ICU-10710 remove some C comments..

X-SVN-Rev: 35954
This commit is contained in:
Steven R. Loomis 2014-06-26 01:45:51 +00:00
parent 88a77c56cf
commit 49a3242d0a

View File

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