diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-04 04:40:17 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-04 04:40:17 +0000 |
commit | c855ce7ab97aa25c609a5f83e19b27289fede21a (patch) | |
tree | 282a2e2a5550be0fd1bddafad0a138b451e21fe8 /test/Modules/linkage-merge.cpp | |
parent | 98735a91d53296a76fbcfc00328f6b9aa8bc6cef (diff) |
Add hasExternalLinkageUncached back with the test that Richard provided, but
keep the call at the current location.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules/linkage-merge.cpp')
-rw-r--r-- | test/Modules/linkage-merge.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Modules/linkage-merge.cpp b/test/Modules/linkage-merge.cpp new file mode 100644 index 0000000000..dafb0090e7 --- /dev/null +++ b/test/Modules/linkage-merge.cpp @@ -0,0 +1,7 @@ +// RUN: rm -rf %t +// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -I %S/Inputs %s + +#include "linkage-merge-bar.h" + +static int f(int); +int f(int); |