last commit missed a check
This commit is contained in:
parent
b1e87e3e31
commit
14b684e07d
|
@ -11720,7 +11720,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
|
|
@ -5245,7 +5245,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
}
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
|
|
@ -8477,7 +8477,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
}
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
|
|
@ -5660,7 +5660,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
}
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
|
|
@ -15372,7 +15372,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
}
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
@ -15381,7 +15381,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
c += 1;
|
||||
OpIdx = *c - 1;
|
||||
c += 1;
|
||||
PrintMethodIdx = *c -1;
|
||||
PrintMethodIdx = *c - 1;
|
||||
printCustomAliasOperand(MI, OpIdx, PrintMethodIdx, OS);
|
||||
} else
|
||||
printOperand(MI, *c - 1, OS);
|
||||
|
|
|
@ -14887,7 +14887,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
}
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
|
|
@ -2895,7 +2895,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
}
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
|
|
@ -3150,7 +3150,7 @@ static char *printAliasInstr(MCInst *MI, SStream *OS, void *info)
|
|||
}
|
||||
}
|
||||
SStream_concat0(OS, AsmMnem);
|
||||
if (AsmOps) {
|
||||
if (*AsmOps) {
|
||||
SStream_concat0(OS, "\t");
|
||||
for (c = AsmOps; *c; c++) {
|
||||
if (*c == '$') {
|
||||
|
|
Loading…
Reference in New Issue