Skip to content

Commit

Permalink
Current batch of -disable-debug-info-verifier.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187130 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed Jul 25, 2013
1 parent c34cb8a commit f204228
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion test/CodeGen/ARM/2010-08-04-StackVariable.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llc -O0 -mtriple=arm-apple-darwin < %s | grep DW_OP_breg
; RUN: llc -disable-debug-info-verifier -O0 -mtriple=arm-apple-darwin < %s | grep DW_OP_breg
; Use DW_OP_breg in variable's location expression if the variable is in a stack slot.

%struct.SVal = type { i8*, i32 }
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/ARM/2011-01-19-MergedGlobalDbg.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llc < %s | FileCheck %s
; RUN: llc -disable-debug-info-verifier < %s | FileCheck %s

target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:32:64-v128:32:128-a0:0:32-n32"
target triple = "thumbv7-apple-darwin10"
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/ARM/2011-08-02-MergedGlobalDbg.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llc < %s | FileCheck %s
; RUN: llc -disable-debug-info-verifier < %s | FileCheck %s

; Check debug info output for merged global.
; DW_AT_location
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/ARM/debug-info-blocks.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llc -O0 < %s | FileCheck %s
; RUN: llc -O0 -disable-debug-info-verifier < %s | FileCheck %s
; CHECK: @DEBUG_VALUE: mydata <- [SP+{{[0-9]+}}]
; Radar 9331779
target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:32-f32:32:32-f64:32:32-v64:32:64-v128:32:128-a0:0:32-n32"
Expand Down
4 changes: 2 additions & 2 deletions test/CodeGen/X86/2010-05-28-Crash.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; RUN: llc -mtriple=x86_64-apple-darwin < %s | FileCheck %s
; RUN: llc -mtriple=x86_64-apple-darwin -regalloc=basic < %s | FileCheck %s
; RUN: llc -disable-debug-info-verifier -mtriple=x86_64-apple-darwin < %s | FileCheck %s
; RUN: llc -disable-debug-info-verifier -mtriple=x86_64-apple-darwin -regalloc=basic < %s | FileCheck %s
; Test to check separate label for inlined function argument.

define i32 @foo(i32 %y) nounwind optsize ssp {
Expand Down
4 changes: 2 additions & 2 deletions test/CodeGen/X86/2011-01-24-DbgValue-Before-Use.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; RUN: llc < %s | FileCheck %s
; RUN: llc < %s -regalloc=basic | FileCheck %s
; RUN: llc -disable-debug-info-verifier < %s | FileCheck %s
; RUN: llc -disable-debug-info-verifier < %s -regalloc=basic | FileCheck %s
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"
target triple = "x86_64-apple-darwin10.0.0"

Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/X86/dbg-byval-parameter.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llc -march=x86 -asm-verbose < %s | grep DW_TAG_formal_parameter
; RUN: llc -disable-debug-info-verifier -march=x86 -asm-verbose < %s | grep DW_TAG_formal_parameter


%struct.Pt = type { double, double }
Expand Down
2 changes: 1 addition & 1 deletion test/DebugInfo/X86/2010-04-13-PubType.ll
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion test/DebugInfo/X86/dbg-value-range.ll
Original file line number Diff line number Diff line change
@@ -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 }

Expand Down
4 changes: 2 additions & 2 deletions test/DebugInfo/inlined-vars.ll
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion test/Instrumentation/AddressSanitizer/debug_info.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: opt < %s -asan -asan-module -S | FileCheck %s
; RUN: opt -disable-debug-info-verifier < %s -asan -asan-module -S | FileCheck %s

; Checks that llvm.dbg.declare instructions are updated
; accordingly as we merge allocas.
Expand Down
2 changes: 1 addition & 1 deletion test/Transforms/DeadArgElim/dbginfo.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: opt -deadargelim -S < %s | FileCheck %s
; RUN: opt -disable-debug-info-verifier -deadargelim -S < %s | FileCheck %s
; PR14016

; Check that debug info metadata for subprograms stores pointers to
Expand Down
2 changes: 1 addition & 1 deletion test/Transforms/InstCombine/debuginfo.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: opt < %s -instcombine -S | FileCheck %s
; RUN: opt -disable-debug-info-verifier < %s -instcombine -S | FileCheck %s

declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone

Expand Down
2 changes: 1 addition & 1 deletion test/Transforms/Mem2Reg/ConvertDebugInfo.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: opt < %s -mem2reg -S | FileCheck %s
; RUN: opt -disable-debug-info-verifier < %s -mem2reg -S | FileCheck %s

define double @testfunc(i32 %i, double %j) nounwind ssp {
entry:
Expand Down
4 changes: 2 additions & 2 deletions test/Transforms/ScalarRepl/debuginfo-preserved.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; RUN: opt < %s -scalarrepl -S | FileCheck %s
; RUN: opt < %s -scalarrepl-ssa -S | FileCheck %s
; RUN: opt -disable-debug-info-verifier < %s -scalarrepl -S | FileCheck %s
; RUN: opt -disable-debug-info-verifier < %s -scalarrepl-ssa -S | FileCheck %s
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"
target triple = "x86_64-apple-macosx10.6.0"

Expand Down

0 comments on commit f204228

Please sign in to comment.