diff options
Diffstat (limited to 'clang/test/CodeGen/mangle.c')
-rw-r--r-- | clang/test/CodeGen/mangle.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGen/mangle.c b/clang/test/CodeGen/mangle.c index 6571a4b7873..b3affe94695 100644 --- a/clang/test/CodeGen/mangle.c +++ b/clang/test/CodeGen/mangle.c @@ -47,3 +47,8 @@ void test3() { void foo6() __asm__("var2"); void foo6() { } + + + +int foo7 __asm__("foo7") __attribute__((used)); +float foo8 __asm__("foo7") = 42; |