diff options
Diffstat (limited to 'test/DebugInfo')
-rw-r--r-- | test/DebugInfo/X86/2010-04-13-PubType.ll | 2 | ||||
-rw-r--r-- | test/DebugInfo/X86/dbg-value-range.ll | 2 | ||||
-rw-r--r-- | test/DebugInfo/inlined-vars.ll | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/test/DebugInfo/X86/2010-04-13-PubType.ll b/test/DebugInfo/X86/2010-04-13-PubType.ll index 5bebeaa..64663c6 100644 --- a/test/DebugInfo/X86/2010-04-13-PubType.ll +++ b/test/DebugInfo/X86/2010-04-13-PubType.ll @@ -1,4 +1,4 @@ -; RUN: llc -O0 -asm-verbose -mtriple=x86_64-macosx < %s | FileCheck %s +; RUN: llc -disable-debug-info-verifier -O0 -asm-verbose -mtriple=x86_64-macosx < %s | FileCheck %s ; CHECK-NOT: .asciz "X" ## External Name ; CHECK: .asciz "Y" ## External Name ; Test to check type with no definition is listed in pubtypes section. diff --git a/test/DebugInfo/X86/dbg-value-range.ll b/test/DebugInfo/X86/dbg-value-range.ll index 00886bf..80c0f9b 100644 --- a/test/DebugInfo/X86/dbg-value-range.ll +++ b/test/DebugInfo/X86/dbg-value-range.ll @@ -1,4 +1,4 @@ -; RUN: llc -mtriple=x86_64-apple-darwin10 < %s | FileCheck %s +; RUN: llc -disable-debug-info-verifier -mtriple=x86_64-apple-darwin10 < %s | FileCheck %s %struct.a = type { i32 } diff --git a/test/DebugInfo/inlined-vars.ll b/test/DebugInfo/inlined-vars.ll index 841daaa..ae7a6a4 100644 --- a/test/DebugInfo/inlined-vars.ll +++ b/test/DebugInfo/inlined-vars.ll @@ -1,5 +1,5 @@ -; RUN: llc -O0 < %s | FileCheck %s -check-prefix ARGUMENT -; RUN: llc -O0 < %s | FileCheck %s -check-prefix VARIABLE +; RUN: llc -disable-debug-info-verifier -O0 < %s | FileCheck %s -check-prefix ARGUMENT +; RUN: llc -disable-debug-info-verifier -O0 < %s | FileCheck %s -check-prefix VARIABLE ; PR 13202 define i32 @main() uwtable { |