Skip to content

Commit 9cdec48

Browse files
dakrmetaspace
authored andcommitted
arch: x86: tools: increase symbol name size
Increase the symbol name size as the Rust compiler seems to generate symbol names exceeding the previous buffer size of 256. arch/x86/tools/insn_decoder_test: error: malformed line 2486512: 77620 make[2]: *** [arch/x86/tools/Makefile:26: posttest] Error 3 Signed-off-by: Danilo Krummrich <[email protected]>
1 parent 4eb727d commit 9cdec48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/tools/insn_decoder_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static void parse_args(int argc, char **argv)
106106
}
107107
}
108108

109-
#define BUFSIZE 256
109+
#define BUFSIZE 1024
110110

111111
int main(int argc, char **argv)
112112
{

0 commit comments

Comments
 (0)