diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-04 01:51:11 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-04 01:51:11 +0000 |
commit | d613ac9c57936d219d9eecba1d061a45ff7a3ae8 (patch) | |
tree | a00e5f5d40b301e5e58a3c16b453994301bace9e /test | |
parent | b846381fc3099b2340ba8c74d16178203a60d9a0 (diff) |
Fix 41 of the 61 tests which fail with modules enabled: we were computing and
caching the linkage for a declaration before we set up its redeclaration chain,
when determining whether a declaration could be a redeclaration of something
from an unimported submodule. We actually want to look at the declaration as if
it were not a redeclaration here, so compute the linkage but don't cache it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178733 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/PCH/chain-late-anonymous-namespace.cpp | 2 | ||||
-rw-r--r-- | test/PCH/cxx-constexpr.cpp | 3 | ||||
-rw-r--r-- | test/Sema/private-extern.c | 1 | ||||
-rw-r--r-- | test/SemaCXX/linkage2.cpp | 1 |
4 files changed, 7 insertions, 0 deletions
diff --git a/test/PCH/chain-late-anonymous-namespace.cpp b/test/PCH/chain-late-anonymous-namespace.cpp index 87205c631b..edae285c90 100644 --- a/test/PCH/chain-late-anonymous-namespace.cpp +++ b/test/PCH/chain-late-anonymous-namespace.cpp @@ -2,6 +2,8 @@ // RUN: %clang_cc1 -include %s -include %s -fsyntax-only %s // with PCH // RUN: %clang_cc1 -chain-include %s -chain-include %s -fsyntax-only %s +// with PCH, with modules enabled +// RUN: %clang_cc1 -chain-include %s -chain-include %s -fsyntax-only -fmodules %s #if !defined(PASS1) #define PASS1 diff --git a/test/PCH/cxx-constexpr.cpp b/test/PCH/cxx-constexpr.cpp index 8fe48f7377..13f04a7947 100644 --- a/test/PCH/cxx-constexpr.cpp +++ b/test/PCH/cxx-constexpr.cpp @@ -4,6 +4,9 @@ // RUN: %clang_cc1 -pedantic-errors -std=c++11 -emit-pch %s -o %t-cxx11 // RUN: %clang_cc1 -pedantic-errors -std=c++11 -include-pch %t-cxx11 -verify %s +// RUN: %clang_cc1 -pedantic-errors -std=c++98 -emit-pch %s -o %t -fmodules +// RUN: %clang_cc1 -pedantic-errors -std=c++98 -include-pch %t -verify %s -fmodules + #ifndef HEADER_INCLUDED #define HEADER_INCLUDED diff --git a/test/Sema/private-extern.c b/test/Sema/private-extern.c index e480f3f224..e9b67d5070 100644 --- a/test/Sema/private-extern.c +++ b/test/Sema/private-extern.c @@ -1,4 +1,5 @@ // RUN: %clang_cc1 -verify -fsyntax-only -Wno-private-extern %s +// RUN: %clang_cc1 -verify -fsyntax-only -Wno-private-extern -fmodules %s static int g0; // expected-note{{previous definition}} int g0; // expected-error{{non-static declaration of 'g0' follows static declaration}} diff --git a/test/SemaCXX/linkage2.cpp b/test/SemaCXX/linkage2.cpp index 2cee581b49..c2dbf1e308 100644 --- a/test/SemaCXX/linkage2.cpp +++ b/test/SemaCXX/linkage2.cpp @@ -1,4 +1,5 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -fsyntax-only -verify -fmodules %s namespace test1 { int x; // expected-note {{previous definition is here}} |