diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-12 10:45:52 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-12 10:45:52 +0000 |
commit | f331aa9c00d46f4fca65cb16ebef97e6749fbd88 (patch) | |
tree | ee8dc40237512e48d8d038078981894add5ec19a | |
parent | 6223834f1f397f4ec375725760f4b567c045d018 (diff) | |
download | bcm5719-llvm-f331aa9c00d46f4fca65cb16ebef97e6749fbd88.tar.gz bcm5719-llvm-f331aa9c00d46f4fca65cb16ebef97e6749fbd88.zip |
clang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests.
llvm-svn: 163701
-rw-r--r-- | clang/test/CodeGenObjC/objc2-ivar-assign.m | 3 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/property.m | 3 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/synthesize_ivar-cont-class.m | 3 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/synthesize_ivar.m | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/CodeGenObjC/objc2-ivar-assign.m b/clang/test/CodeGenObjC/objc2-ivar-assign.m index af768007212..05a7b353cfe 100644 --- a/clang/test/CodeGenObjC/objc2-ivar-assign.m +++ b/clang/test/CodeGenObjC/objc2-ivar-assign.m @@ -1,6 +1,9 @@ // RUN: %clang_cc1 -fobjc-gc -emit-llvm -o %t %s // RUN: grep objc_assign_ivar %t | count 6 +// PR13820 +// REQUIRES: LP64 + @interface I @end typedef I TI; diff --git a/clang/test/CodeGenObjC/property.m b/clang/test/CodeGenObjC/property.m index 16881d608bf..f72b52b3ebf 100644 --- a/clang/test/CodeGenObjC/property.m +++ b/clang/test/CodeGenObjC/property.m @@ -1,5 +1,8 @@ // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s +// PR13820 +// REQUIRES: LP64 + // TODO: actually test most of this instead of just emitting it int printf(const char *, ...); diff --git a/clang/test/CodeGenObjC/synthesize_ivar-cont-class.m b/clang/test/CodeGenObjC/synthesize_ivar-cont-class.m index 6bc7ac8170e..98227023318 100644 --- a/clang/test/CodeGenObjC/synthesize_ivar-cont-class.m +++ b/clang/test/CodeGenObjC/synthesize_ivar-cont-class.m @@ -1,6 +1,9 @@ // RUN: %clang_cc1 -emit-llvm -o %t %s // RUN: grep '@"OBJC_IVAR_$_XCOrganizerDeviceNodeInfo.viewController"' %t +// PR13820 +// REQUIRES: LP64 + @interface XCOrganizerNodeInfo @property (readonly, retain) id viewController; @end diff --git a/clang/test/CodeGenObjC/synthesize_ivar.m b/clang/test/CodeGenObjC/synthesize_ivar.m index e4fbe101a64..92f6096b7e4 100644 --- a/clang/test/CodeGenObjC/synthesize_ivar.m +++ b/clang/test/CodeGenObjC/synthesize_ivar.m @@ -1,5 +1,8 @@ // RUN: %clang_cc1 -emit-llvm -o %t %s +// PR13820 +// REQUIRES: LP64 + @interface I @property int IP; @end |