david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Declaring the CPU architecture in the middle of an assembly file is

somewhat redundant, and also causes gas to complain when we include
the profiling code (which uses an i586 instruction).
This commit is contained in:
Michael Brown 2007-01-18 18:53:32 +00:00
parent f781a98ac4
commit 5d57cd47a2
1 changed files with 0 additions and 1 deletions

View File

@ -261,7 +261,6 @@ extern void remove_from_rm_stack ( void *data, size_t size );
#define TEXT16_CODE( asm_code_str ) \
".section \".text16\", \"ax\", @progbits\n\t" \
".code16\n\t" \
".arch i386\n\t" \
asm_code_str "\n\t" \
".code32\n\t" \
".previous\n\t"