http://llvm.org/bugs/show_bug.cgi?id=2163
Dan Gohman <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Status|RESOLVED |REOPENED Resolution|WORKSFORME | --- Comment #5 from Dan Gohman <[email protected]> 2009-05-06 12:45:56 --- Here's a new testcase which still reproduces the problem: declare i32 @x() define i32 @foo(i32 %a, i32 %b) nounwind { %t0 = tail call i32 @x() nounwind %t1 = sdiv i32 %a, %b ret i32 %t1 } Currently the div is scheduled before the call on x86 and x86-64. -- 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
