|
2 |
edited tags
|
||
|
1 |
|
||
GCC inline assembler, mixing register sizes (x86)Does anyone know how I can get rid of the following assembler warning? Code is x86, 32 bit:
If I compile it I get the following (very valid) warning:
What I'm looking for is a way to tell the compiler/assembler that I want to access the lower 16 bit sub-register of %0. Accessing the byte sub-registers (in this case AL and AH) would be nice to know as well. I've already choosen the "q" modifier, so the compiler is forced to use EAX, EBX, ECX or EDX. I've made sure the compiler has to picks a register that has sub-registers. I know that I can force the asm-code to use a specific register (and it's sub-registers), but I want to leave the register-allocation job up to the compiler.
|
||||
