diff options
author | Tim Northover <tnorthover@apple.com> | 2014-11-14 22:45:23 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-11-14 22:45:23 +0000 |
commit | a0691c8983434901710492283d07c37fbcb82019 (patch) | |
tree | 78d2113441e136bf1776fc08ae68bae1e5b5d207 /llvm | |
parent | 43f40103f045161e7de51d9fb20c3a7f623c7ff1 (diff) | |
download | bcm5719-llvm-a0691c8983434901710492283d07c37fbcb82019.tar.gz bcm5719-llvm-a0691c8983434901710492283d07c37fbcb82019.zip |
ARM: simplify test.
The test's DWARF stubs were there just to trigger the emission of .cfi
directives. Fortunately, the NetBSD ABI already demands proper DWARF unwind
info, so it's easier to just use that triple.
llvm-svn: 222055
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/CodeGen/ARM/debug-frame-large-stack.ll | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/llvm/test/CodeGen/ARM/debug-frame-large-stack.ll b/llvm/test/CodeGen/ARM/debug-frame-large-stack.ll index 92b46b63592..1addf639bfe 100644 --- a/llvm/test/CodeGen/ARM/debug-frame-large-stack.ll +++ b/llvm/test/CodeGen/ARM/debug-frame-large-stack.ll @@ -1,28 +1,11 @@ -; RUN: llc -filetype=asm -o - < %s -mtriple arm-arm-none-eabi -disable-fp-elim| FileCheck %s --check-prefix=CHECK-ARM -; RUN: llc -filetype=asm -o - < %s -mtriple arm-arm-none-eabi | FileCheck %s --check-prefix=CHECK-ARM-FP-ELIM +; RUN: llc -filetype=asm -o - < %s -mtriple arm-arm-netbsd-eabi -disable-fp-elim| FileCheck %s --check-prefix=CHECK-ARM +; RUN: llc -filetype=asm -o - < %s -mtriple arm-arm-netbsd-eabi | FileCheck %s --check-prefix=CHECK-ARM-FP-ELIM define void @test1() { %tmp = alloca [ 64 x i32 ] , align 4 ret void } -!llvm.dbg.cu = !{!0} -!llvm.module.flags = !{!8, !9} -!llvm.ident = !{!10} - -!0 = metadata !{metadata !"0x11\0012\00clang version 3.5 \000\00\000\00\000", metadata !1, metadata !2, metadata !2, metadata !3, metadata !2, metadata !2} ; [ DW_TAG_compile_unit ] [/tmp/large.c] [DW_LANG_C99] -!1 = metadata !{metadata !"large.c", metadata !"/tmp"} -!2 = metadata !{} -!3 = metadata !{metadata !4} -!4 = metadata !{metadata !"0x2e\00test1\00test1\00\001\000\001\000\006\000\000\001", metadata !1, metadata !5, metadata !6, null, void ()* @test1, null, null, metadata !2} ; [ DW_TAG_subprogram ] [line 1] [def] [test1] -!5 = metadata !{metadata !"0x29", metadata !1} ; [ DW_TAG_file_type ] [/tmp/large.c] -!6 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !7, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ] -!7 = metadata !{null} -!8 = metadata !{i32 2, metadata !"Dwarf Version", i32 4} -!9 = metadata !{i32 1, metadata !"Debug Info Version", i32 2} -!10 = metadata !{metadata !"clang version 3.5 "} -!11 = metadata !{i32 2, i32 0, metadata !4, null} - ; CHECK-ARM-LABEL: test1: ; CHECK-ARM: .cfi_startproc ; CHECK-ARM: sub sp, sp, #256 |