]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/testsuite/gas/i386/quoted.s
x86: honor quoted figure braces in i386_att_operand()
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / i386 / quoted.s
1 .text
2 quoted:
3 mov "x(y)", %eax
4 mov "x(y)"(%eax), %eax
5 mov %es:"x(y)", %eax
6 mov %es:"x(y)"(%eax), %eax
7
8 mov "x(y", %eax
9 mov "x)y", %eax
10 mov "x?y", %eax
11 mov "x{y", %eax
12 mov "x{z}", %eax
13
14 call *"x(y)"
15 call *%es:"x(y)"
16 call %es:*"x(y)"