forked from OSchip/llvm-project
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:
parent
58231d7897
commit
15ad3e08fe
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue