2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 07:11:32 +00:00

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

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"