diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-03-01 22:07:04 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-03-01 22:07:04 +0000 |
commit | 32ad2ee2618745ce3da51c2ae066ed5f21157c07 (patch) | |
tree | 75ce3669bcdce6d2e76de48f0c88bb48e31d2e22 /test/Modules/macros.c | |
parent | b3d7275c1a4a9f676af850cd661b56c4ad7ef5c9 (diff) |
Change @import to @__experimental_modules_import. We are not ready to commit to a particular syntax for modules,
and don't have time to push it forward in the near future.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151841 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules/macros.c')
-rw-r--r-- | test/Modules/macros.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Modules/macros.c b/test/Modules/macros.c index 35fde4a9a6..83e1c66a10 100644 --- a/test/Modules/macros.c +++ b/test/Modules/macros.c @@ -4,7 +4,7 @@ // RUN: %clang_cc1 -E -fmodules -x objective-c -fmodule-cache-path %t %s | FileCheck -check-prefix CHECK-PREPROCESSED %s // FIXME: When we have a syntax for modules in C, use that. -@import macros; +@__experimental_modules_import macros; #ifndef INTEGER # error INTEGER macro should be visible |