aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>2009-10-27 14:58:27 +0000
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>2009-10-27 14:58:27 +0000
commit838b04871270b37c99a43dda2527f3e96b3331ff (patch)
tree65b53de0524fed04b22b235c9ab885a762456567
parente4b255c80a786c6f16d3f0362ecb7e1b1e959f63 (diff)
Disabling some MS extensions which cause this test to fail
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85242 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/SemaCXX/typedef-redecl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/typedef-redecl.cpp b/test/SemaCXX/typedef-redecl.cpp
index e38f47436d..85944a661d 100644
--- a/test/SemaCXX/typedef-redecl.cpp
+++ b/test/SemaCXX/typedef-redecl.cpp
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -verify %s
+// RUN: clang-cc -fsyntax-only -verify -fms-extensions=0 %s
typedef int INT;
typedef INT REALLY_INT; // expected-note {{previous definition is here}}
typedef REALLY_INT REALLY_REALLY_INT;