Rewrite test to use llvm-dwarfdump instead of checking for asm comments.

llvm-svn: 255912
This commit is contained in:
Adrian Prantl 2015-12-17 18:25:51 +00:00
parent 9b9294674b
commit 4293ee9d3d
1 changed files with 12 additions and 4 deletions

View File

@ -1,10 +1,18 @@
; RUN: llc -O0 -mtriple=x86_64-apple-darwin -filetype=asm %s -o - | FileCheck %s
; RUN: %llc_dwarf -filetype=obj -O0 < %s | llvm-dwarfdump -debug-dump=info - | FileCheck %s
; ModuleID = 'aggregate-indirect-arg.cpp'
; extracted from debuginfo-tests/aggregate-indirect-arg.cpp
; v should not be a pointer.
; CHECK: ##DEBUG_VALUE: foo:v <- %RSI
; rdar://problem/13658587
; v should be a pointer.
; CHECK: DW_TAG_subprogram
; CHECK: DW_AT_specification {{.*}} "_ZN1A3fooE4SVal"
; CHECK-NOT: DW_TAG_subprogram
; CHECK: DW_TAG_formal_parameter
; CHECK: DW_AT_name {{.*}} "this"
; CHECK-NOT: DW_TAG_subprogram
; CHECK: DW_TAG_formal_parameter
; rsi+0
; CHECK-NEXT: DW_AT_location [DW_FORM_block1] (<0x02> 74 00)
; CHECK-NEXT: DW_AT_name {{.*}} "v"
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.9.0"