diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-14 02:10:57 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-14 02:10:57 +0000 |
commit | 181a289256d8276ffe247405b521074f9947a124 (patch) | |
tree | f2c854c1a0c334b776c30bdacb832b0ccf4100e6 /test/Transforms | |
parent | 15bfd6d3ad739cca0a12049f3e7e94c3645ee881 (diff) | |
download | external_llvm-181a289256d8276ffe247405b521074f9947a124.zip external_llvm-181a289256d8276ffe247405b521074f9947a124.tar.gz external_llvm-181a289256d8276ffe247405b521074f9947a124.tar.bz2 |
Fixup to r186268 and r186269: don't append -LABEL to CHECK-NOT. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186271 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/basictest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/Inline/nested-inline.ll | 4 | ||||
-rw-r--r-- | test/Transforms/LoopUnroll/2011-08-09-PhiUpdate.ll | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll b/test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll index 7fb8d9c..b98faca 100644 --- a/test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll +++ b/test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll @@ -1,7 +1,7 @@ ; RUN: opt < %s -globalopt -S | FileCheck %s define internal void @f() { -; CHECK-NOT-LABEL: @f( +; CHECK-NOT: @f( ; CHECK: define void @a ret void } diff --git a/test/Transforms/Inline/basictest.ll b/test/Transforms/Inline/basictest.ll index 93bf9dd..085694f 100644 --- a/test/Transforms/Inline/basictest.ll +++ b/test/Transforms/Inline/basictest.ll @@ -20,7 +20,7 @@ define i32 @test1(i32 %W) { %T = type { i32, i32 } -; CHECK-NOT-LABEL: @test2f( +; CHECK-NOT: @test2f( define internal %T* @test2f(i1 %cond, %T* %P) { br i1 %cond, label %T, label %F diff --git a/test/Transforms/Inline/nested-inline.ll b/test/Transforms/Inline/nested-inline.ll index 9c23774..9d08ac0 100644 --- a/test/Transforms/Inline/nested-inline.ll +++ b/test/Transforms/Inline/nested-inline.ll @@ -47,7 +47,7 @@ UnifiedReturnBlock: ; preds = %cond_next13 ret void } -; CHECK-NOT-LABEL: @bar( +; CHECK-NOT: @bar( define internal fastcc void @bar(i32 %X) { entry: %ALL = alloca i32, align 4 ; <i32*> [#uses=1] @@ -101,7 +101,7 @@ declare void @ext(i32*) define void @test(i32 %X) { entry: ; CHECK: test -; CHECK-NOT-LABEL: @bar( +; CHECK-NOT: @bar( tail call fastcc void @bar( i32 %X ) tail call fastcc void @bar( i32 %X ) tail call fastcc void @bar2( i32 %X ) diff --git a/test/Transforms/LoopUnroll/2011-08-09-PhiUpdate.ll b/test/Transforms/LoopUnroll/2011-08-09-PhiUpdate.ll index cf5f5e0..8344993 100644 --- a/test/Transforms/LoopUnroll/2011-08-09-PhiUpdate.ll +++ b/test/Transforms/LoopUnroll/2011-08-09-PhiUpdate.ll @@ -15,7 +15,7 @@ declare i32 @getval() nounwind ; CHECK-LABEL: @foo( ; CHECK: return: ; CHECK: %retval.0 = phi i32 [ %tmp7.i, %land.lhs.true ], [ 0, %do.cond ], [ %tmp7.i.1, %land.lhs.true.1 ], [ 0, %do.cond.1 ], [ %tmp7.i.2, %land.lhs.true.2 ], [ 0, %do.cond.2 ], [ %tmp7.i.3, %land.lhs.true.3 ], [ 0, %do.cond.3 ] -; CHECK-NOT-LABEL: @bar( +; CHECK-NOT: @bar( ; CHECK: bar.exit.3 define i32 @foo() uwtable ssp align 2 { entry: |