Prep for new warning.

llvm-svn: 76670
This commit is contained in:
Mike Stump 2009-07-21 22:54:02 +00:00
parent 332a6590ae
commit bdbe099dd2
3 changed files with 3 additions and 2 deletions

View File

@ -7,4 +7,5 @@
int test(float4 f4) {
return f4.xy; // expected-error{{float2}}
return 1;
}

View File

@ -12,6 +12,7 @@ float *test_f1(int val, double x, double y) {
return f1(x, y);
else
return f1(x); // expected-error{{too few arguments to function call}}
return 0;
}
void test_g0(int *x, float * y) {

View File

@ -22,8 +22,7 @@
@end
@implementation TestMethodPool1
+ alloc {
}
+ alloc { return 0; }
- (double)instMethod:(int)foo {
return foo;