diff options
author | Chris Lattner <sabre@nondot.org> | 2003-02-28 19:21:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-02-28 19:21:27 +0000 |
commit | 2daba3bb1cb6090f38f2e0ce0a78d0b8fb682e4e (patch) | |
tree | 938383c86a0eb962a64f7434aa28b3848d655be1 | |
parent | fc4b9bc1b0f3d1592bcb837c805aab242acc0fac (diff) |
Fix testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5674 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll b/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll index a0ba69d849..9a133e4d83 100644 --- a/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll +++ b/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll @@ -8,7 +8,7 @@ Loop: store int 5, int* %P %P2 = cast int* %P to sbyte* store sbyte 4, sbyte* %P2 - br bool true, label %loop, label %Out + br bool true, label %Loop, label %Out Out: ret void } |