diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-02 19:27:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-02 19:27:58 +0000 |
commit | 4a6e4b30b44048cdc7277b3d0264e71e47b5611c (patch) | |
tree | b5a74c0d9016473c5e23e93de27af920558bffe4 /test/Transforms/InstCombine/2002-08-02-CastTest.ll | |
parent | c7f9637a9d6359a3898531e7266fcb370da770c1 (diff) |
These tests should not run -dce pass to cleanup instcombine.
If instcombine is making dead instructions, ALL that should be used is -die
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/2002-08-02-CastTest.ll')
-rw-r--r-- | test/Transforms/InstCombine/2002-08-02-CastTest.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/2002-08-02-CastTest.ll b/test/Transforms/InstCombine/2002-08-02-CastTest.ll index 7599d7669e..7ce791cf0e 100644 --- a/test/Transforms/InstCombine/2002-08-02-CastTest.ll +++ b/test/Transforms/InstCombine/2002-08-02-CastTest.ll @@ -1,7 +1,7 @@ ; This testcase is incorrectly getting completely eliminated. There should be ; SOME instruction named %c here, even if it's a bitwise and. ; -; RUN: as < %s | opt -instcombine -dce | grep '%c' +; RUN: as < %s | opt -instcombine | grep '%c' ulong %test3(ulong %A) { %c1 = cast ulong %A to ubyte ; <ubyte> [#uses=0] %c2 = cast ulong %A to ulong ; <ulong> [#uses=0] |