1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Remove the Foundation.h file because not everyone has that.

llvm-svn: 43184
This commit is contained in:
Bill Wendling 2007-10-19 18:36:04 +00:00
parent d002595abf
commit c3a94c317d

View File

@ -1,18 +1,23 @@
// RUN: %llvmgcc -x objective-c %s -arch i386 -pipe -std=gnu99 -O2 -fexceptions -S -o - | not grep Unwind_Resume
#import <stdio.h>
#import <Foundation/Foundation.h>
@interface Foo {
char c;
short s;
int i;
long l;
float f;
double d;
}
-(Foo*)retain;
@end
static NSMutableArray *anArray = nil;
CFArrayRef bork(void) {
CFArrayRef result = NULL;
NSAutoreleasePool *pool = [NSAutoreleasePool new];
struct Foo *bork(Foo *FooArray) {
struct Foo *result = 0;
@try {
result = CFRetain(anArray);
result = [FooArray retain];
} @catch(id any) {
NSLog(@"Swallowed exception %@", any);
printf("hello world\n");
}
[pool release];
return result;
}