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

llvm-svn: 183999
This commit is contained in:
JF Bastien 2013-06-14 19:55:26 +00:00
parent 58231d7897
commit 15ad3e08fe
1 changed files with 2 additions and 2 deletions

View File

@ -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