[X86][SSE] Vectorize v2i32 to v2f64 conversions
[oota-llvm.git] / test / CodeGen / X86 / cmpxchg16b.ll
index ba1c4ef9e225d89dd38347894a880412288beede..d514c0a35f5bb9b6105500f6a251329c52e2469e 100644 (file)
@@ -3,10 +3,9 @@
 ; Basic 128-bit cmpxchg
 define void @t1(i128* nocapture %p) nounwind ssp {
 entry:
-; CHECK movl   $1, %ebx
-; CHECK: lock
-; CHECK-NEXT: cmpxchg16b
-  %r = cmpxchg i128* %p, i128 0, i128 1 seq_cst
+; CHECK: movl  $1, %ebx
+; CHECK: lock cmpxchg16b
+  %r = cmpxchg i128* %p, i128 0, i128 1 seq_cst seq_cst
   ret void
 }