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 | 92b7c3996457660b37e4665542229b7b4e736fd0 (patch) | |
tree | 38770de7e3283cd3b1191dcd88e9ce4503d5b6f2 | |
parent | db3353f6c9f3ffd291ce9e314e996071252c4285 (diff) |
clang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163701 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenObjC/objc2-ivar-assign.m | 3 | ||||
-rw-r--r-- | test/CodeGenObjC/property.m | 3 | ||||
-rw-r--r-- | test/CodeGenObjC/synthesize_ivar-cont-class.m | 3 | ||||
-rw-r--r-- | test/CodeGenObjC/synthesize_ivar.m | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGenObjC/objc2-ivar-assign.m b/test/CodeGenObjC/objc2-ivar-assign.m index af76800721..05a7b353cf 100644 --- a/test/CodeGenObjC/objc2-ivar-assign.m +++ b/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/test/CodeGenObjC/property.m b/test/CodeGenObjC/property.m index 16881d608b..f72b52b3eb 100644 --- a/test/CodeGenObjC/property.m +++ b/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/test/CodeGenObjC/synthesize_ivar-cont-class.m b/test/CodeGenObjC/synthesize_ivar-cont-class.m index 6bc7ac8170..9822702331 100644 --- a/test/CodeGenObjC/synthesize_ivar-cont-class.m +++ b/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/test/CodeGenObjC/synthesize_ivar.m b/test/CodeGenObjC/synthesize_ivar.m index e4fbe101a6..92f6096b7e 100644 --- a/test/CodeGenObjC/synthesize_ivar.m +++ b/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 |