Skip to content
Snippets Groups Projects
Commit 141a62cc authored by Graeme Russ's avatar Graeme Russ Committed by Wolfgang Denk
Browse files

i386: Fix global label in inline asm compile error

parent 4ee4e413
No related branches found
No related tags found
No related merge requests found
...@@ -234,8 +234,8 @@ ...@@ -234,8 +234,8 @@
#ifndef __ASSEMBLER__ #ifndef __ASSEMBLER__
extern unsigned long ip; extern unsigned long ip;
#define PRINTIP asm ("call next_line\n" \ #define PRINTIP asm ("call 0\n" \
"next_line:\n" \ "0:\n" \
"pop %%eax\n" \ "pop %%eax\n" \
"movl %%eax, %0\n" \ "movl %%eax, %0\n" \
:"=r"(ip) \ :"=r"(ip) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment