Displaying 1 result from an estimated 1 matches for "1e158490".
2009 Oct 09
3
[LLVMdev] Instructions that cannot be duplicated
Is inlining (which duplicates code) of functions containing OpenCL style
barriers legal?or e.g.
if you had some changed phase ordering where you had
if (cond) {
S1;
}
call user_func() // user_func has a barrier buried inside it.
you do tail splitting
if (cond) {
S1;
call user_func()
} else {
call user_func();
}
now you inline -- oops now you might have a problem
so do you want