diff options
Diffstat (limited to 'test/Transforms/InstCombine/ashr-nop.ll')
-rw-r--r-- | test/Transforms/InstCombine/ashr-nop.ll | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/Transforms/InstCombine/ashr-nop.ll b/test/Transforms/InstCombine/ashr-nop.ll deleted file mode 100644 index 870ede38cd..0000000000 --- a/test/Transforms/InstCombine/ashr-nop.ll +++ /dev/null @@ -1,8 +0,0 @@ -; RUN: opt < %s -instcombine -S | not grep ashr - -define i32 @foo(i32 %x) { - %o = and i32 %x, 1 - %n = add i32 %o, -1 - %t = ashr i32 %n, 17 - ret i32 %t -} |