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