[LLVMbugs] [Bug 8740] dse can be too eager

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Mon Dec 6 13:11:13 PST 2010


http://llvm.org/bugs/show_bug.cgi?id=8740

Chris Lattner <clattner at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID

--- Comment #1 from Chris Lattner <clattner at apple.com> 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.



More information about the llvm-bugs mailing list