diff options
-rw-r--r-- | test/Transforms/ConstProp/2005-01-28-SetCCGEP.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Transforms/ConstProp/2005-01-28-SetCCGEP.ll b/test/Transforms/ConstProp/2005-01-28-SetCCGEP.ll new file mode 100644 index 0000000000..b4984a8172 --- /dev/null +++ b/test/Transforms/ConstProp/2005-01-28-SetCCGEP.ll @@ -0,0 +1,12 @@ +; RUN: llvm-as < %s | opt -constprop | llvm-dis | not grep 'ret bool false' + +%b = external global [2 x { }] + +implementation + +bool %f() { + ; tmp.2 -> true, not false. + %tmp.2 = seteq { }* getelementptr ([2 x { }]* %b, int 0, int 0), + getelementptr ([2 x { }]* %b, int 0, int 1) + ret bool %tmp.2 +} |