Merging r261365:
[oota-llvm.git] / test / MC / X86 / intel-syntax-bitwise-ops.s
index a38ae85e6ed164c552e203502ace0d11805b2e1e..1f09996fe914cb2fc090d798204f6163b4a8ac6f 100644 (file)
@@ -16,3 +16,9 @@
     and ecx, ((1)|2)
 // CHECK: andl $1, %ecx
     and ecx, 1&2+3
+// CHECK: addl $4938, %eax
+    add eax, 9876 >> 1
+// CHECK: addl $19752, %eax
+    add eax, 9876 << 1
+// CHECK: addl $5, %eax
+    add eax, 6 ^ 3