diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-01-18 05:00:42 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-01-18 05:00:42 +0000 |
commit | 4dccb90e92ba9e4abffe0177493b6db9949678dd (patch) | |
tree | 1640404690dec7fbefb709f19037ee6b2459ead2 /test/Sema/uninit-variables.c | |
parent | c104e53639de4424b83955acfadc977773b5883d (diff) |
Correctly enable test/Sema/unit-variables.c,
thus identifying a minor logical flaw in
UninitializedValuesV2.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/uninit-variables.c')
-rw-r--r-- | test/Sema/uninit-variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/uninit-variables.c b/test/Sema/uninit-variables.c index 51e66759e0..aabb97634b 100644 --- a/test/Sema/uninit-variables.c +++ b/test/Sema/uninit-variables.c @@ -1,4 +1,4 @@ -// RUN: %clang -Wuninitialized-experimental -fsyntax-only %s +// RUN: %clang_cc1 -fsyntax-only -Wuninitialized-experimental -fsyntax-only %s -verify int test1() { int x; |