[llvm] r183999 - Fix frame pointer debug information test

JF Bastien jfb at google.com
Fri Jun 14 12:55:26 PDT 2013


Author: jfb
Date: Fri Jun 14 14:55:26 2013
New Revision: 183999

URL: http://llvm.org/viewvc/llvm-project?rev=183999&view=rev
Log:
Fix frame pointer debug information test

Run the test at O1 instead of O0: ARM FastISel keeps frame pointers around and ignores the flag. The test should now pass on ARM and still passes on x86.See: http://llvm.org/bugs/show_bug.cgi?id=16322

Modified:
    llvm/trunk/test/DebugInfo/2010-04-19-FramePtr.ll

Modified: llvm/trunk/test/DebugInfo/2010-04-19-FramePtr.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/2010-04-19-FramePtr.ll?rev=183999&r1=183998&r2=183999&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/2010-04-19-FramePtr.ll (original)
+++ llvm/trunk/test/DebugInfo/2010-04-19-FramePtr.ll Fri Jun 14 14:55:26 2013
@@ -1,6 +1,6 @@
-; RUN: llc -asm-verbose -O0 -o %t < %s 
+; RUN: llc -asm-verbose -O1 -o %t < %s 
 ; RUN: grep DW_AT_APPLE_omit_frame_ptr %t
-; RUN: llc -disable-fp-elim -asm-verbose -O0 -o %t < %s 
+; RUN: llc -disable-fp-elim -asm-verbose -O1 -o %t < %s 
 ; RUN: grep -v DW_AT_APPLE_omit_frame_ptr %t
 
 





More information about the llvm-commits mailing list