[cfe-commits] r163701 - in /cfe/trunk/test/CodeGenObjC: objc2-ivar-assign.m property.m synthesize_ivar-cont-class.m synthesize_ivar.m
NAKAMURA Takumi
geek4civic at gmail.com
Wed Sep 12 03:45:53 PDT 2012
Author: chapuni
Date: Wed Sep 12 05:45:52 2012
New Revision: 163701
URL: http://llvm.org/viewvc/llvm-project?rev=163701&view=rev
Log:
clang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests.
Modified:
cfe/trunk/test/CodeGenObjC/objc2-ivar-assign.m
cfe/trunk/test/CodeGenObjC/property.m
cfe/trunk/test/CodeGenObjC/synthesize_ivar-cont-class.m
cfe/trunk/test/CodeGenObjC/synthesize_ivar.m
Modified: cfe/trunk/test/CodeGenObjC/objc2-ivar-assign.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/objc2-ivar-assign.m?rev=163701&r1=163700&r2=163701&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/objc2-ivar-assign.m (original)
+++ cfe/trunk/test/CodeGenObjC/objc2-ivar-assign.m Wed Sep 12 05:45:52 2012
@@ -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;
Modified: cfe/trunk/test/CodeGenObjC/property.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/property.m?rev=163701&r1=163700&r2=163701&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/property.m (original)
+++ cfe/trunk/test/CodeGenObjC/property.m Wed Sep 12 05:45:52 2012
@@ -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 *, ...);
Modified: cfe/trunk/test/CodeGenObjC/synthesize_ivar-cont-class.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/synthesize_ivar-cont-class.m?rev=163701&r1=163700&r2=163701&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/synthesize_ivar-cont-class.m (original)
+++ cfe/trunk/test/CodeGenObjC/synthesize_ivar-cont-class.m Wed Sep 12 05:45:52 2012
@@ -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
Modified: cfe/trunk/test/CodeGenObjC/synthesize_ivar.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/synthesize_ivar.m?rev=163701&r1=163700&r2=163701&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/synthesize_ivar.m (original)
+++ cfe/trunk/test/CodeGenObjC/synthesize_ivar.m Wed Sep 12 05:45:52 2012
@@ -1,5 +1,8 @@
// RUN: %clang_cc1 -emit-llvm -o %t %s
+// PR13820
+// REQUIRES: LP64
+
@interface I
@property int IP;
@end
More information about the cfe-commits
mailing list