diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-12-11 22:11:52 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-12-11 22:11:52 +0000 |
commit | c50d4924eb2e84f5b2d9a39ab828410624f27643 (patch) | |
tree | 41595167dda1e9644cc359f865e63de151bc25d4 /clang/test/Modules/method_pool.m | |
parent | b798fc98491be64027818fd2362e1896a9935903 (diff) | |
download | bcm5719-llvm-c50d4924eb2e84f5b2d9a39ab828410624f27643.tar.gz bcm5719-llvm-c50d4924eb2e84f5b2d9a39ab828410624f27643.zip |
Use @import rather than @__experimental_modules_import, since the
latter is rather a mess to type.
llvm-svn: 169919
Diffstat (limited to 'clang/test/Modules/method_pool.m')
-rw-r--r-- | clang/test/Modules/method_pool.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/method_pool.m b/clang/test/Modules/method_pool.m index 25582caec3a..9574caa1528 100644 --- a/clang/test/Modules/method_pool.m +++ b/clang/test/Modules/method_pool.m @@ -1,7 +1,7 @@ // RUN: rm -rf %t // RUN: %clang_cc1 -fmodule-cache-path %t -fmodules -I %S/Inputs %s -verify -@__experimental_modules_import MethodPoolA; +@import MethodPoolA; // in other file: // expected-note{{using}} @@ -19,7 +19,7 @@ void testMethod2(id object) { [object method2:1]; } -@__experimental_modules_import MethodPoolB; +@import MethodPoolB; void testMethod1Again(id object) { [object method1]; |