blob: 35f034a90953b8bf56f300c8b4397e952bc63474 [file] [log] [blame]
Chris Lattner4f1a9ff2008-07-08 18:33:33 +00001; RUN: llvm-as < %s | opt -constprop -disable-output
Chris Lattnerd137a082008-07-08 05:46:34 +00002; PR2529
3define <4 x i32> @test1(i32 %argc, i8** %argv) {
4entry:
5 %foo = vicmp slt <4 x i32> undef, <i32 14, i32 undef, i32 undef, i32 undef>
6 ret <4 x i32> %foo
7}
8
9define <4 x i32> @main(i32 %argc, i8** %argv) {
10entry:
11 %foo = vicmp slt <4 x i32> <i32 undef, i32 undef, i32 undef, i32
12undef>, <i32 undef, i32 undef, i32 undef, i32 undef>
13 ret <4 x i32> %foo
14}