diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-06 04:28:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-06 04:28:03 +0000 |
commit | d4a96730c1986b96f246fbc8df7adb5bcdbc4e4d (patch) | |
tree | 947f11e9529dfef0a6e719056102a08fd229a091 /clang/test/Preprocessor/objc-pp.m | |
parent | bab43b4c91a200b6dc3fc2e0e29f0bcded089516 (diff) | |
download | bcm5719-llvm-d4a96730c1986b96f246fbc8df7adb5bcdbc4e4d.tar.gz bcm5719-llvm-d4a96730c1986b96f246fbc8df7adb5bcdbc4e4d.zip |
#import is not considered an extension for ObjC.
llvm-svn: 66246
Diffstat (limited to 'clang/test/Preprocessor/objc-pp.m')
-rw-r--r-- | clang/test/Preprocessor/objc-pp.m | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/objc-pp.m b/clang/test/Preprocessor/objc-pp.m new file mode 100644 index 00000000000..0648acddf6e --- /dev/null +++ b/clang/test/Preprocessor/objc-pp.m @@ -0,0 +1,4 @@ +// RUN: clang %s -fsyntax-only -verify -pedantic + +#import <stdio.h> // no warning. + |