From e7ef087598d74e3329a7f0b24af8430faf639606 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Wed, 24 Aug 2016 17:50:23 +0200 Subject: x86-asm: Accept all 32bit immediates In particular don't care if they're signed or unsigned, they're all acceptable as immediates. --- tests/asmtest.S | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests') diff --git a/tests/asmtest.S b/tests/asmtest.S index c19db06..59deb06 100644 --- a/tests/asmtest.S +++ b/tests/asmtest.S @@ -49,6 +49,8 @@ movw %ax, 0x100(%ebx,%edx,2) movw $0x1122,%si movl $0x112233,%edx +movl $0x80000000, %esi +movl $-0x7fffffff, %edi #ifdef __x86_64__ mov $0x11223344,%rbx movq $0x11223344,%rbx -- cgit v1.3.1