From 15ad3e08fe7765dd6764c4afe7538fdabb150cd7 Mon Sep 17 00:00:00 2001 From: JF Bastien Date: Fri, 14 Jun 2013 19:55:26 +0000 Subject: [PATCH] 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 --- llvm/test/DebugInfo/2010-04-19-FramePtr.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/DebugInfo/2010-04-19-FramePtr.ll b/llvm/test/DebugInfo/2010-04-19-FramePtr.ll index 88eebe6f3b6f..81e34d1b70d0 100644 --- a/llvm/test/DebugInfo/2010-04-19-FramePtr.ll +++ b/llvm/test/DebugInfo/2010-04-19-FramePtr.ll @@ -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