search for: 20d07fab

Displaying 2 results from an estimated 2 matches for "20d07fab".

2015 Apr 17
2
[LLVMdev] how to use "new instruction()"
...anyway. You're probably best to intentionally detect those cases > and call the correct CreateXYZ function. > > Cheers. > > Tim. > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150416/20d07fab/attachment.html>
2015 Apr 17
3
[LLVMdev] how to use "new instruction()"
Thanks, Tim. What I want to do is to change the scalar instructions to scalar ones. For example, if I have to the following one: %3 = fadd double %1, double %2 I want to change it into %6 = fadd <2 x double> %4, double %2. I understand that I can detect the operation first, and use "create" to create for each of them. But I don't if there is a generic way to do this because