diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-03 18:24:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-03 18:24:14 +0000 |
commit | 94ad28b31433058445a27db722f60402ee820bea (patch) | |
tree | 9c60fe2e61231fcf462546f6c922aef0f9f5ff1f /test/Modules/header-import.m | |
parent | 5948ae1021122164b22f74353bb7fe325a64f616 (diff) | |
download | clang-94ad28b31433058445a27db722f60402ee820bea.tar.gz |
Under -fmodules, accept #public <macroname> and #private <macroname>
to make a macro public (the default for headers) or private,
respectively.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@147455 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules/header-import.m')
-rw-r--r-- | test/Modules/header-import.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Modules/header-import.m b/test/Modules/header-import.m index 610a20f549..960eecea22 100644 --- a/test/Modules/header-import.m +++ b/test/Modules/header-import.m @@ -1,5 +1,5 @@ // RUN: rm -rf %t -// RUN: %clang_cc1 -fmodule-cache-path %t -F %S/Inputs -I %S/Inputs -verify %s +// RUN: %clang_cc1 -fmodules -fmodule-cache-path %t -F %S/Inputs -I %S/Inputs -verify %s #import "point.h" @import Module; |