From: Chris Lattner Date: Wed, 20 Dec 2006 06:20:23 +0000 (+0000) Subject: new testcase X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d407f41413d4c67d354e4533a252630f72eb8815;p=oota-llvm.git new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32714 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/SCCP/2006-12-19-UndefBug.ll b/test/Transforms/SCCP/2006-12-19-UndefBug.ll new file mode 100644 index 00000000000..7ab14366eb5 --- /dev/null +++ b/test/Transforms/SCCP/2006-12-19-UndefBug.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s | opt -sccp | llvm-dis | grep 'ret bool false' + +bool %foo() { + %X = and bool false, undef + ret bool %X +}