diff options
Diffstat (limited to 'test/Assembler/ConstantExprFold.llx')
-rw-r--r-- | test/Assembler/ConstantExprFold.llx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/Assembler/ConstantExprFold.llx b/test/Assembler/ConstantExprFold.llx new file mode 100644 index 0000000..b4d779d --- /dev/null +++ b/test/Assembler/ConstantExprFold.llx @@ -0,0 +1,29 @@ +; This test checks to make sure that constant exprs fold in some simple +; situations + +; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | not grep {(} + +%A = global long 0 + +global long* cast (long add (long cast (long* %A to long), long 0) to long*) ; X + 0 == X +global long* cast (long sub (long cast (long* %A to long), long 0) to long*) ; X - 0 == X +global long* cast (long mul (long cast (long* %A to long), long 0) to long*) ; X * 0 == 0 +global long* cast (long div (long cast (long* %A to long), long 1) to long*) ; X / 1 == X +global long* cast (long rem (long cast (long* %A to long), long 1) to long*) ; X % 1 == 0 +global long* cast (long and (long cast (long* %A to long), long 0) to long*) ; X & 0 == 0 +global long* cast (long and (long cast (long* %A to long), long -1) to long*) ; X & -1 == X +global long or (long cast (long* %A to long), long -1) ; X | -1 == -1 +global long* cast (long xor (long cast (long* %A to long), long 0) to long*) ; X ^ 0 == X + +%Ty = type { int, int } +%B = external global %Ty + +global bool setlt (long* %A, long* getelementptr (long* %A, long 1)) ; true +global bool setlt (long* %A, long* getelementptr (long* %A, long 0)) ; false +global bool setlt (int* getelementptr (%Ty* %B, long 0, uint 0), + int* getelementptr (%Ty* %B, long 0, uint 1)) ; true +;global bool setne (long* %A, long* cast (%Ty* %B to long*)) ; true + +global bool seteq ({ short }* cast (int 1 to { short }*), { short }* null) +global bool setlt ({ short }* cast (int 1 to { short }*), { short }* cast (int 2 to { short }*)) + |