diff options
author | Eric Christopher <echristo@gmail.com> | 2012-12-27 02:13:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-12-27 02:13:55 +0000 |
commit | 5211876288858beaea822b333af3750b7d25eec2 (patch) | |
tree | 9eee9972e1e4c6fcc52053acc17733bef1dd1695 /test/DebugInfo/X86 | |
parent | 0b9c5e268f4cad1327c03b18d002b74547d2c215 (diff) |
FileCheck-ize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/DebugInfo/X86')
-rw-r--r-- | test/DebugInfo/X86/2011-09-26-GlobalVarContext.ll | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/test/DebugInfo/X86/2011-09-26-GlobalVarContext.ll b/test/DebugInfo/X86/2011-09-26-GlobalVarContext.ll index 934fa81435..e514493442 100644 --- a/test/DebugInfo/X86/2011-09-26-GlobalVarContext.ll +++ b/test/DebugInfo/X86/2011-09-26-GlobalVarContext.ll @@ -1,4 +1,5 @@ -; RUN: llc -mtriple=x86_64-pc-linux-gnu -asm-verbose %s -o - | FileCheck %s +; RUN: llc -mtriple=x86_64-pc-linux-gnu %s -o %t -filetype=obj +; RUN: llvm-dwarfdump %t | FileCheck %s ; ModuleID = 'test.c' @@ -38,10 +39,13 @@ declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone !18 = metadata !{i32 4, i32 23, metadata !16, null} !19 = metadata !{i32 5, i32 5, metadata !16, null} -; CHECK: .long .Lstring3 -; CHECK: .byte 1 -; CHECK: .byte 1 +; CHECK: DW_TAG_variable [3] +; CHECK: DW_AT_name [DW_FORM_strp] ( .debug_str[0x00000043] = "GLB") +; CHECK: DW_AT_decl_file [DW_FORM_data1] (0x01) +; CHECK: DW_AT_decl_line [DW_FORM_data1] (0x01) + +; CHECK: DW_TAG_variable [6] +; CHECK: DW_AT_name [DW_FORM_strp] ( .debug_str[0x0000004d] = "LOC") +; CHECK: DW_AT_decl_file [DW_FORM_data1] (0x01) +; CHECK: DW_AT_decl_line [DW_FORM_data1] (0x04) -; CHECK: .long .Lstring6 -; CHECK: .byte 1 -; CHECK: .byte 4 |