mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-2242 Assembly generation updates
X-SVN-Rev: 14652
This commit is contained in:
parent
c393867665
commit
7e677ea1b4
1 changed files with 5 additions and 7 deletions
|
@ -141,27 +141,25 @@ static const struct AssemblyType {
|
|||
} assemblyHeader[] = {
|
||||
{"gcc",
|
||||
|
||||
".globl _%s\n"
|
||||
/*"\t.section .rodata\n"*/ /* Not a portable named section */
|
||||
"\t.text\n" /* program and const arrays are put here. .data is writable */
|
||||
".globl %s\n"
|
||||
"\t.section .rodata\n"
|
||||
"\t.align 8\n" /* Either align 8 bytes or 2^8 (256) bytes. 8 bytes is needed. */
|
||||
"_%s:\n\n",
|
||||
"%s:\n\n",
|
||||
|
||||
".long "
|
||||
},
|
||||
#if 0
|
||||
{"gcc-darwin",
|
||||
|
||||
/*"\t.section __TEXT,__text,regular,pure_instructions\n"
|
||||
"\t.section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32\n"*/
|
||||
".globl _%s\n"
|
||||
"\t.text\n"
|
||||
"\t.data\n"
|
||||
"\t.const\n"
|
||||
"\t.align 4\n" /* 1<<4 = 16 */
|
||||
"_%s:\n\n",
|
||||
|
||||
".long "
|
||||
},
|
||||
#endif
|
||||
{"xlc",
|
||||
"",
|
||||
""}
|
||||
|
|
Loading…
Add table
Reference in a new issue