diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/CFrontend/2002-09-19-StarInLabel.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CFrontend/2002-09-19-StarInLabel.c b/test/CFrontend/2002-09-19-StarInLabel.c new file mode 100644 index 0000000..b16a39d --- /dev/null +++ b/test/CFrontend/2002-09-19-StarInLabel.c @@ -0,0 +1,7 @@ +extern void start() __asm__("start"); +extern void _start() __asm__("_start"); +extern void __start() __asm__("__start"); +void start() {} +void _start() {} +void __start() {} + |