diff options
Diffstat (limited to 'clang/test/CodeGen/static-local-union.c')
-rw-r--r-- | clang/test/CodeGen/static-local-union.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/static-local-union.c b/clang/test/CodeGen/static-local-union.c index 9515a316d62..f276b200eb1 100644 --- a/clang/test/CodeGen/static-local-union.c +++ b/clang/test/CodeGen/static-local-union.c @@ -1,4 +1,4 @@ -// RUN: clang -emit-llvm < %s +// RUN: clang-cc -emit-llvm < %s int a() {static union{int a;} r[2] = {1,2};return r[1].a;} |