diff options
Diffstat (limited to 'clang/test/CodeGenCXX/mangle.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/mangle.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/mangle.cpp b/clang/test/CodeGenCXX/mangle.cpp index 1c98df590bc..5c38d172113 100644 --- a/clang/test/CodeGenCXX/mangle.cpp +++ b/clang/test/CodeGenCXX/mangle.cpp @@ -16,6 +16,11 @@ void f(s) { } typedef enum { foo } e; void f(e) { } -// RUN: grep _Z1f1u %t | count 1 +// RUN: grep _Z1f1u %t | count 1 && typedef union { int a; } u; void f(u) { } + +// RUN: grep _Z1f1x %t | count 1 +typedef struct { int a; } x,y; +void f(y) { } + |