http://llvm.org/bugs/show_bug.cgi?id=8740
Chris Lattner <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Chris Lattner <[email protected]> 2010-12-06 15:11:13 CST --- DSE is doing the correct thing here, your IR is invalid: %11 = tail call fastcc {} %10(i8* %9) nounwind This call is loading from the %0 alloca, which is illegal for calls marked tail. See LangRef.html for more information. If you remove "tail" from the call, DSE doesn't change the behavior of the program. -- 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
