mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Remove tests that were either migrated to clang or are obsolete.
llvm-svn: 138168
This commit is contained in:
parent
2baa96a19c
commit
c8137c1603
@ -1,7 +0,0 @@
|
||||
// RUN: %llvmgcc -w -x objective-c++ -S %s -o /dev/null
|
||||
|
||||
@class NSImage;
|
||||
void bork() {
|
||||
NSImage *nsimage;
|
||||
[nsimage release];
|
||||
}
|
@ -1,27 +0,0 @@
|
||||
// RUN: not %llvmgcc %s -S -o - |& FileCheck %s
|
||||
// This tests for a specific diagnostic in LLVM-GCC.
|
||||
// Clang compiles this correctly with no diagnostic,
|
||||
// ergo this test will fail with a Clang-based front-end.
|
||||
class TFENodeVector {
|
||||
public:
|
||||
TFENodeVector(const TFENodeVector& inNodeVector);
|
||||
TFENodeVector();
|
||||
};
|
||||
|
||||
@interface TWindowHistoryEntry {}
|
||||
@property (assign, nonatomic) TFENodeVector targetPath;
|
||||
@end
|
||||
|
||||
@implementation TWindowHistoryEntry
|
||||
@synthesize targetPath;
|
||||
- (void) initWithWindowController {
|
||||
TWindowHistoryEntry* entry;
|
||||
TFENodeVector newPath;
|
||||
// CHECK: setting a C++ non-POD object value is not implemented
|
||||
#ifdef __clang__
|
||||
#error setting a C++ non-POD object value is not implemented
|
||||
#endif
|
||||
entry.targetPath = newPath;
|
||||
[entry setTargetPath:newPath];
|
||||
}
|
||||
@end
|
@ -1,10 +0,0 @@
|
||||
// RUN: %llvmgcc %s -S
|
||||
struct TRunSoon {
|
||||
template <class P1> static void Post() {}
|
||||
};
|
||||
|
||||
@implementation TPrivsTableViewMainController
|
||||
- (void) applyToEnclosed {
|
||||
TRunSoon::Post<int>();
|
||||
}
|
||||
@end
|
@ -1,16 +0,0 @@
|
||||
// RUN: %llvmgcc %s -S
|
||||
struct TFENode {
|
||||
TFENode(const TFENode& inNode);
|
||||
};
|
||||
|
||||
@interface TIconViewController
|
||||
- (const TFENode&) target;
|
||||
@end
|
||||
|
||||
void sortAllChildrenForNode(const TFENode&node);
|
||||
|
||||
@implementation TIconViewController
|
||||
- (void) setArrangeBy {
|
||||
sortAllChildrenForNode(self.target);
|
||||
}
|
||||
@end
|
@ -1,5 +0,0 @@
|
||||
load_lib llvm.exp
|
||||
|
||||
if [ llvm_gcc_supports obj-c++ ] then {
|
||||
RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{mm}]]
|
||||
}
|
Loading…
Reference in New Issue
Block a user