vote up 1 vote down star

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!

flag

2 Answers

vote up 0 vote down

Try using __asm__ instead. Look here for more.

Also, try removing the \n\t from inside the assembly code.

link|flag
vote up 6 vote down

You can't specify variables that way with GCC. See this document for a detailed description of how to use inline assembler. Also, keep in mind that GCC uses AT&T syntax, not Intel syntax, so you have to put your destinations on the right.

link|flag
I did it in the past, you can specify with the compiler that you use intel syntax but silly me has forgotten how to to that – Roberto Jun 24 at 9:46
I don't know how well it works, but from the GCC documentation: `-masm=DIALECT' Output asm instructions using selected DIALECT. Supported choices are `intel' or `att' (the default one). Darwin does not support `intel'. – ephemient Jun 25 at 3:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.