6 test(int32_t op1_init
, int32_t op2_init
, int32_t op3_init
)
8 register int32_t op1
asm("8") = op1_init
;
9 register int32_t op3
asm("9") = op3_init
;
11 int32_t op2
= op2_init
;
18 : "=d" (cc
), "+Q" (op2
), "+d"(op1
), "+d"(op3
)
27 test(op1
, 0x10000000, 0x12345678); // complaint
28 test(0x10000000, op2
, 0x12345678); // complaint
29 test(0x10000000, 0x01000000, op3
); // no complaint