Skip to content

Commit 683a595

Browse files
committed
Remove accidentially introduced regressions
1 parent 19bf8f1 commit 683a595

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

arch/ARM/ARMGenAsmWriter.inc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13228,6 +13228,7 @@ static bool printAliasInstr(MCInst *MI, uint64_t Address, SStream *OS) {
1322813228
Patterns,
1322913229
Conds,
1323013230
AsmStrings,
13231+
NULL,
1323113232
};
1323213233
const char *AsmString = matchAliasPatterns(MI, &M);
1323313234
if (!AsmString) return false;
@@ -13236,15 +13237,13 @@ static bool printAliasInstr(MCInst *MI, uint64_t Address, SStream *OS) {
1323613237
while (AsmString[I] != ' ' && AsmString[I] != '\t' &&
1323713238
AsmString[I] != '$' && AsmString[I] != '\0')
1323813239
++I;
13239-
SStream_concat1(OS, '\t');
1324013240
char *substr = malloc(I+1);
1324113241
memcpy(substr, AsmString, I);
1324213242
substr[I] = '\0';
1324313243
SStream_concat0(OS, substr);
1324413244
free(substr);
1324513245
if (AsmString[I] != '\0') {
1324613246
if (AsmString[I] == ' ' || AsmString[I] == '\t') {
13247-
SStream_concat1(OS, '\t');
1324813247
++I;
1324913248
}
1325013249
do {

0 commit comments

Comments
 (0)