R600/SI: Add missing offset operand to buffer bothen
[oota-llvm.git] / test / Bitcode / select.ll
index 71e669a90cdceac968cc519dd8310a54a83874d4..3ad06796dccf3ed9ec5b766d1fd099af96a333b1 100644 (file)
@@ -1,9 +1,10 @@
 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
+; RUN: verify-uselistorder < %s
 
 define <2 x i32> @main() {
   ret <2 x i32> select (<2 x i1> <i1 false, i1 undef>, <2 x i32> zeroinitializer, <2 x i32> <i32 0, i32 undef>)
 }
 
 ; CHECK: define <2 x i32> @main() {
-; CHECK:   ret <2 x i32> select (<2 x i1> <i1 false, i1 undef>, <2 x i32> zeroinitializer, <2 x i32> <i32 0, i32 undef>)
+; CHECK:   ret <2 x i32> <i32 0, i32 undef>
 ; CHECK: }