summaryrefslogtreecommitdiff
path: root/tools/asm-processor/tests/static-global.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/asm-processor/tests/static-global.c')
-rw-r--r--tools/asm-processor/tests/static-global.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/asm-processor/tests/static-global.c b/tools/asm-processor/tests/static-global.c
index a7f6169..12b1434 100644
--- a/tools/asm-processor/tests/static-global.c
+++ b/tools/asm-processor/tests/static-global.c
@@ -25,9 +25,11 @@ nop
)
static int xtext(int a, int b, int c) {
+ static int bss2;
return 1;
}
void baz(void) {
+ { static int bss2; }
xtext(bss2, rodata2[0], data2[0]);
}