[X86] Change the immediate for IN/OUT instructions to u8imm so the assembly parser...
[oota-llvm.git] / test / MC / X86 / validate-inst-att.s
index 61d5813613a4d5c68ff5b624a366b45358796105..7ac851e76150a303e2265b5bf354d84a7cc39753 100644 (file)
@@ -9,4 +9,14 @@
        int $-129
 # CHECK: error: invalid operand for instruction
 # CHECK:       int $-129
+# CHECK:            ^
+
+       inb $65535, %al
+# CHECK: error: invalid operand for instruction
+# CHECK:       inb $65535, %al
+# CHECK:            ^
+
+       outb %al, $65535
+# CHECK: error: invalid operand for instruction
+# CHECK:       outb %al, $65535
 # CHECK:            ^