Debug Info: enable verifier for testing cases.
authorManman Ren <manman.ren@gmail.com>
Mon, 29 Jul 2013 20:18:19 +0000 (20:18 +0000)
committerManman Ren <manman.ren@gmail.com>
Mon, 29 Jul 2013 20:18:19 +0000 (20:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187375 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/2010-02-05-FunctionLocalMetadataBecomesNull.ll
test/CodeGen/ARM/2010-08-04-StackVariable.ll
test/CodeGen/ARM/2011-01-19-MergedGlobalDbg.ll
test/CodeGen/ARM/2011-08-02-MergedGlobalDbg.ll
test/DebugInfo/inlined-vars.ll
test/Transforms/LICM/debug-value.ll
test/Transforms/LoopIdiom/debug-line.ll
test/Transforms/LoopRotate/dbgvalue.ll
test/Transforms/SimplifyCFG/branch-fold-dbg.ll
test/Transforms/SimplifyCFG/hoist-dbgvalue.ll

index 423bc9edfde4d1149896b5620105aaf04d66d09b..a0d77fa13da969f4fb401f0829bd9462fdcfc071 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -std-compile-opts -disable-debug-info-verifier < %s | llvm-dis | not grep badref
+; RUN: opt -std-compile-opts < %s | llvm-dis | not grep badref
 
 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.2"
index 3c5fa5f7941d6683b3cc427c4113279d8d0ad69c..f4ad4bcdc1a8d34e01973321003b152836f8fe3f 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc -disable-debug-info-verifier -O0 -mtriple=arm-apple-darwin < %s | grep DW_OP_breg
+; RUN: llc -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 }
index c6bea016ac06a58522d521fba0589e0380692405..626d1213cac9b9d4df323dbd69fb62589ff18898 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc -disable-debug-info-verifier < %s | FileCheck %s
+; RUN: llc < %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"
index 298fb7ce7d955d8f81facf2e349663b383c1d74f..33826f8006bbc5c94bf36ea532fb6bd2400bdb07 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc -disable-debug-info-verifier < %s | FileCheck %s
+; RUN: llc < %s | FileCheck %s
 
 ; Check debug info output for merged global.
 ; DW_AT_location
index 1fc687e50d47ef9a5b6ebc2cb847ecafe336786e..cd98e1d89a50d7e95415809aaecb779defa48383 100644 (file)
@@ -1,5 +1,5 @@
-; 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
+; RUN: llc -O0 < %s | FileCheck %s -check-prefix ARGUMENT
+; RUN: llc -O0 < %s | FileCheck %s -check-prefix VARIABLE
 ; PR 13202
 
 define i32 @main() uwtable {
index 5095dc1a27a559c92d01912972db003c0694f7d9..3c7006446cbbc87a8208abf452179a46f85e077b 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -licm -basicaa -disable-debug-info-verifier < %s -S | FileCheck %s
+; RUN: opt -licm -basicaa < %s -S | FileCheck %s
 
 define void @dgefa() nounwind ssp {
 entry:
index 8905c26d157f9ea87ce4651c5fa092a9b34ae631..23375900ac6223afbe707130d09780e1a3a410f2 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -loop-idiom -disable-debug-info-verifier < %s -S | FileCheck %s
+; RUN: opt -loop-idiom < %s -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-darwin10.0.0"
 
index 80126f0b4bd7563b2c1b97d9dc3f8bed4e1bf718..3434cdc8e52aa856fdd4ae31c16f88ce0e4e7625 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -S -disable-debug-info-verifier -loop-rotate < %s | FileCheck %s
+; RUN: opt -S -loop-rotate < %s | FileCheck %s
 
 declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
 declare void @llvm.dbg.value(metadata, i64, metadata) nounwind readnone
index 44fee274e3abd17c833cff714399a4d319ed6aed..7fc0cbd43476f58fefad722782d1c377ff6958b3 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -simplifycfg -S -disable-debug-info-verifier < %s | FileCheck %s
+; RUN: opt -simplifycfg -S < %s | FileCheck %s
 
 %0 = type { i32*, i32* }
 
index eb1e2b537e31642dabf0973ba2800ba21bcdc26b..0e36066ad3a33c8c11d2f554f70da7d2c8637f72 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -simplifycfg -S -disable-debug-info-verifier < %s | FileCheck %s
+; RUN: opt -simplifycfg -S < %s | FileCheck %s
 
 define i32 @foo(i32 %i) nounwind ssp {
   call void @llvm.dbg.value(metadata !{i32 %i}, i64 0, metadata !6), !dbg !7