Hi
Silly question, but I just can not find the necessary flag in gcc. Basically, I have in my C program the following inline assembler code
asm volatile ("lea ebx, [timings] \n\t");
When compiling, I get an errormessage which says: Error: invalid char '[' beginning operand 2 `[timings]'
Now I remember that a long time ago I used some kind of flag that told the compiler that it is x86 inline assembly. But cant find it online, could maybe someone please tell me which flag i have to use?
Thank you so much!