http://llvm.org/bugs/show_bug.cgi?id=9475
Chris Lattner <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #2 from Chris Lattner <[email protected]> 2011-04-14 13:40:52 CDT --- I don't think that this is particularly common, but if you really care we could have a mid-level optimization that turns "call (select c, foo,bar)" into "if (c) {foo()} else {bar()}" which is good for pointer analysis, IPO etc anyway. If this is important, please move to Target/README.txt -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
