From f331aa9c00d46f4fca65cb16ebef97e6749fbd88 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 12 Sep 2012 10:45:52 +0000 Subject: [PATCH] clang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests. llvm-svn: 163701 --- clang/test/CodeGenObjC/objc2-ivar-assign.m | 3 +++ clang/test/CodeGenObjC/property.m | 3 +++ clang/test/CodeGenObjC/synthesize_ivar-cont-class.m | 3 +++ clang/test/CodeGenObjC/synthesize_ivar.m | 3 +++ 4 files changed, 12 insertions(+) diff --git a/clang/test/CodeGenObjC/objc2-ivar-assign.m b/clang/test/CodeGenObjC/objc2-ivar-assign.m index af768007212b..05a7b353cfeb 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 16881d608bf2..f72b52b3ebf8 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 6bc7ac8170ef..98227023318e 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 e4fbe101a648..92f6096b7e4d 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