diff options
Diffstat (limited to 'clang/test/CodeGenObjC')
-rw-r--r-- | clang/test/CodeGenObjC/interface-tu-variable.m | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/clang/test/CodeGenObjC/interface-tu-variable.m b/clang/test/CodeGenObjC/interface-tu-variable.m deleted file mode 100644 index 423a05f6dbc..00000000000 --- a/clang/test/CodeGenObjC/interface-tu-variable.m +++ /dev/null @@ -1,24 +0,0 @@ -// RUN: clang -fnext-runtime -emit-llvm -o %t %s -// RUN: grep 'two = global' %t && -// RUN: grep 'ddd = common' %t && -// RUN: grep 'III = common' %t - -@interface XX -int x; -int one=1; -int two = 2; -@end - -@protocol PPP -int ddd; -@end - -@interface XX(CAT) - char * III; -@end - - -int main( int argc, const char *argv[] ) { - return x+one+two; -} - |