diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-07-18 18:38:24 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-07-18 18:38:24 +0000 |
commit | ebaf14bdd05f8593581ace802d4505930efd8967 (patch) | |
tree | af65f8b25b2c4c09344e379485f0561c8e6cc2e7 /clang/test/Modules/macro-hiding.cpp | |
parent | d46bb62610dd9a15d06c739d1aebbd776ba7e9b1 (diff) | |
download | bcm5719-llvm-ebaf14bdd05f8593581ace802d4505930efd8967.tar.gz bcm5719-llvm-ebaf14bdd05f8593581ace802d4505930efd8967.zip |
Revert "[modules] Fix macro hiding bug exposed if:"
This is breaking the system modules on Darwin, because something that
was defined and re-exported no longer is. Might be this patch, or might
just be a really poor interaction with an existing visibility bug.
This reverts commit r213348.
llvm-svn: 213395
Diffstat (limited to 'clang/test/Modules/macro-hiding.cpp')
-rw-r--r-- | clang/test/Modules/macro-hiding.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/test/Modules/macro-hiding.cpp b/clang/test/Modules/macro-hiding.cpp deleted file mode 100644 index a7a6064e64d..00000000000 --- a/clang/test/Modules/macro-hiding.cpp +++ /dev/null @@ -1,6 +0,0 @@ -// RUN: rm -rf %t -// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -I%S/Inputs/macro-hiding %s -#include "c1.h" -#include "b2.h" - -void h() { assert(true); } |