From: Chris Lattner Date: Fri, 12 Mar 2004 05:50:02 +0000 (+0000) Subject: New testcase X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6551ea98b2c39bef2cf49c5714619f9096322c35;p=oota-llvm.git New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12306 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Assembler/select.ll b/test/Assembler/select.ll new file mode 100644 index 00000000000..2d7bbc5d31e --- /dev/null +++ b/test/Assembler/select.ll @@ -0,0 +1,7 @@ + + +int %test(bool %C, int %V1, int %V2) { + %X = select bool true, bool false, bool true + %V = select bool %X, int %V1, int %V2 + ret int %V +}