ICU-10710 remove some C comments..
X-SVN-Rev: 35954
This commit is contained in:
parent
88a77c56cf
commit
49a3242d0a
@ -112,9 +112,9 @@ static const struct AssemblyType {
|
||||
const char *footer;
|
||||
int8_t hexType; /* HEX_0X or HEX_0h */
|
||||
} assemblyHeader[] = {
|
||||
// For gcc assemblers, the meaning of .align changes depending on the
|
||||
// hardware, so we use .balign 16 which always means 16 bytes.
|
||||
// https://sourceware.org/binutils/docs/as/Pseudo-Ops.html
|
||||
/* For gcc assemblers, the meaning of .align changes depending on the */
|
||||
/* hardware, so we use .balign 16 which always means 16 bytes. */
|
||||
/* https://sourceware.org/binutils/docs/as/Pseudo-Ops.html */
|
||||
{"gcc",
|
||||
".globl %s\n"
|
||||
"\t.section .note.GNU-stack,\"\",%%progbits\n"
|
||||
@ -152,8 +152,8 @@ static const struct AssemblyType {
|
||||
|
||||
".long ","",HEX_0X
|
||||
},
|
||||
// 16 bytes alignment.
|
||||
// http://docs.oracle.com/cd/E19641-01/802-1947/802-1947.pdf
|
||||
/* 16 bytes alignment. */
|
||||
/* http://docs.oracle.com/cd/E19641-01/802-1947/802-1947.pdf */
|
||||
{"sun",
|
||||
"\t.section \".rodata\"\n"
|
||||
"\t.align 16\n"
|
||||
@ -162,8 +162,8 @@ static const struct AssemblyType {
|
||||
|
||||
".word ","",HEX_0X
|
||||
},
|
||||
// 16 bytes alignment for sun-x86.
|
||||
// http://docs.oracle.com/cd/E19963-01/html/821-1608/eoiyg.html
|
||||
/* 16 bytes alignment for sun-x86. */
|
||||
/* http://docs.oracle.com/cd/E19963-01/html/821-1608/eoiyg.html */
|
||||
{"sun-x86",
|
||||
"Drodata.rodata:\n"
|
||||
"\t.type Drodata.rodata,@object\n"
|
||||
@ -174,8 +174,8 @@ static const struct AssemblyType {
|
||||
|
||||
".4byte ","",HEX_0X
|
||||
},
|
||||
// 1<<4 bit alignment for aix.
|
||||
// http://pic.dhe.ibm.com/infocenter/aix/v6r1/index.jsp?topic=%2Fcom.ibm.aix.aixassem%2Fdoc%2Falangref%2Fidalangref_csect_pseudoop.htm
|
||||
/* 1<<4 bit alignment for aix. */
|
||||
/* http://pic.dhe.ibm.com/infocenter/aix/v6r1/index.jsp?topic=%2Fcom.ibm.aix.aixassem%2Fdoc%2Falangref%2Fidalangref_csect_pseudoop.htm */
|
||||
{"xlc",
|
||||
".globl %s{RO}\n"
|
||||
"\t.toc\n"
|
||||
@ -204,8 +204,8 @@ static const struct AssemblyType {
|
||||
|
||||
".WORD ","",HEX_0X
|
||||
},
|
||||
// align 16 bytes
|
||||
// http://msdn.microsoft.com/en-us/library/dwa9fwef.aspx
|
||||
/* align 16 bytes */
|
||||
/* http://msdn.microsoft.com/en-us/library/dwa9fwef.aspx */
|
||||
{ "masm",
|
||||
"\tTITLE %s\n"
|
||||
"; generated by genccode\n"
|
||||
|
Loading…
Reference in New Issue
Block a user