diff options
Diffstat (limited to 'llvm/test/Transforms/InstCombine/cast-and-cast.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/cast-and-cast.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstCombine/cast-and-cast.ll b/llvm/test/Transforms/InstCombine/cast-and-cast.ll new file mode 100644 index 00000000000..b141974bece --- /dev/null +++ b/llvm/test/Transforms/InstCombine/cast-and-cast.ll @@ -0,0 +1,15 @@ +; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | not grep bitcast + +bool %test1(uint %val) { + %t1 = bitcast uint %val to int + %t2 = and int %t1, 1 + %t3 = trunc int %t2 to bool + ret bool %t3 +} + +short %test1(uint %val) { + %t1 = bitcast uint %val to int + %t2 = and int %t1, 1 + %t3 = trunc int %t2 to short + ret short %t3 +} |