call-super-2.m: Make LP64-safe.
* objc.dg/call-super-2.m: Make LP64-safe. * objc.dg/desig-init-1.m: Likewise. From-SVN: r76753
This commit is contained in:
parent
2d9db8eb8d
commit
9a1564bb25
@ -1,3 +1,8 @@
|
||||
2004-01-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* objc.dg/call-super-2.m: Make LP64-safe.
|
||||
* objc.dg/desig-init-1.m: Likewise.
|
||||
|
||||
2004-01-27 Devang Patel <dpatel@apple.com>
|
||||
|
||||
* g++.dg/debug/namespace1.C: New test.
|
||||
|
@ -44,11 +44,11 @@
|
||||
@implementation Derived
|
||||
+ (int) class_func1
|
||||
{
|
||||
int i = (int)[self class_func0]; /* { dg-warning ".Derived. may not respond to .\\+class_func0." } */
|
||||
int i = (size_t)[self class_func0]; /* { dg-warning ".Derived. may not respond to .\\+class_func0." } */
|
||||
/* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 47 } */
|
||||
/* { dg-warning "will be assumed to return .id. and accept" "" { target *-*-* } 47 } */
|
||||
/* { dg-warning ".\.\.\.. as arguments" "" { target *-*-* } 47 } */
|
||||
return i + (int)[super class_func0]; /* { dg-warning ".Object. may not respond to .\\+class_func0." } */
|
||||
return i + (size_t)[super class_func0]; /* { dg-warning ".Object. may not respond to .\\+class_func0." } */
|
||||
}
|
||||
+ (int) class_func2
|
||||
{
|
||||
@ -65,12 +65,12 @@
|
||||
}
|
||||
+ (int) class_func5
|
||||
{
|
||||
int i = (int)[Derived class_func0]; /* { dg-warning ".Derived. may not respond to .\\+class_func0." } */
|
||||
return i + (int)[Object class_func0]; /* { dg-warning ".Object. may not respond to .\\+class_func0." } */
|
||||
int i = (size_t)[Derived class_func0]; /* { dg-warning ".Derived. may not respond to .\\+class_func0." } */
|
||||
return i + (size_t)[Object class_func0]; /* { dg-warning ".Object. may not respond to .\\+class_func0." } */
|
||||
}
|
||||
+ (int) class_func6
|
||||
{
|
||||
return (int)[OBJC_GETCLASS("Object") class_func1]; /* { dg-warning ".Object. may not respond to .\\+class_func1." } */
|
||||
return (size_t)[OBJC_GETCLASS("Object") class_func1]; /* { dg-warning ".Object. may not respond to .\\+class_func1." } */
|
||||
}
|
||||
+ (int) class_func7
|
||||
{
|
||||
@ -78,8 +78,8 @@
|
||||
}
|
||||
- (int) instance_func1
|
||||
{
|
||||
int i = (int)[self instance_func0]; /* { dg-warning ".Derived. may not respond to .\\-instance_func0." } */
|
||||
return i + (int)[super instance_func0]; /* { dg-warning ".Object. may not respond to .\\-instance_func0." } */
|
||||
int i = (size_t)[self instance_func0]; /* { dg-warning ".Derived. may not respond to .\\-instance_func0." } */
|
||||
return i + (size_t)[super instance_func0]; /* { dg-warning ".Object. may not respond to .\\-instance_func0." } */
|
||||
}
|
||||
- (int) instance_func2
|
||||
{
|
||||
@ -95,12 +95,12 @@
|
||||
}
|
||||
- (int) instance_func5
|
||||
{
|
||||
int i = (int)[Derived instance_func1]; /* { dg-warning ".Derived. may not respond to .\\+instance_func1." } */
|
||||
return i + (int)[Object instance_func1]; /* { dg-warning ".Object. may not respond to .\\+instance_func1." } */
|
||||
int i = (size_t)[Derived instance_func1]; /* { dg-warning ".Derived. may not respond to .\\+instance_func1." } */
|
||||
return i + (size_t)[Object instance_func1]; /* { dg-warning ".Object. may not respond to .\\+instance_func1." } */
|
||||
}
|
||||
- (int) instance_func6
|
||||
{
|
||||
return (int)[OBJC_GETCLASS("Object") class_func1]; /* { dg-warning ".Object. may not respond to .\\+class_func1." } */
|
||||
return (size_t)[OBJC_GETCLASS("Object") class_func1]; /* { dg-warning ".Object. may not respond to .\\+class_func1." } */
|
||||
}
|
||||
- (int) instance_func7
|
||||
{
|
||||
@ -111,11 +111,11 @@
|
||||
@implementation Derived (Categ)
|
||||
+ (int) categ_class_func1
|
||||
{
|
||||
int i = (int)[self class_func0]; /* { dg-warning ".Derived. may not respond to .\\+class_func0." } */
|
||||
int i = (size_t)[self class_func0]; /* { dg-warning ".Derived. may not respond to .\\+class_func0." } */
|
||||
i += [self class_func1];
|
||||
i += [self categ_class_func2];
|
||||
i += (int)[self categ_instance_func1]; /* { dg-warning ".Derived. may not respond to .\\+categ_instance_func1." } */
|
||||
return i + (int)[super class_func0]; /* { dg-warning ".Object. may not respond to .\\+class_func0." } */
|
||||
i += (size_t)[self categ_instance_func1]; /* { dg-warning ".Derived. may not respond to .\\+categ_instance_func1." } */
|
||||
return i + (size_t)[super class_func0]; /* { dg-warning ".Object. may not respond to .\\+class_func0." } */
|
||||
}
|
||||
+ (int) categ_class_func2
|
||||
{
|
||||
@ -124,13 +124,13 @@
|
||||
}
|
||||
- (int) categ_instance_func1
|
||||
{
|
||||
int i = (int)[self instance_func0]; /* { dg-warning ".Derived. may not respond to .\\-instance_func0." } */
|
||||
int i = (size_t)[self instance_func0]; /* { dg-warning ".Derived. may not respond to .\\-instance_func0." } */
|
||||
i += [(Derived <Func> *)self categ_instance_func2];
|
||||
i += (int)[(Object <Func> *)self categ_instance_func2]; /* { dg-warning ".Object. may not respond to .\\-categ_instance_func2." } */
|
||||
i += (size_t)[(Object <Func> *)self categ_instance_func2]; /* { dg-warning ".Object. may not respond to .\\-categ_instance_func2." } */
|
||||
/* { dg-warning ".\\-categ_instance_func2. not implemented by protocol" "" { target *-*-* } 129 } */
|
||||
i += (int)[(id <Func>)self categ_instance_func2]; /* { dg-warning ".\\-categ_instance_func2. not implemented by protocol" } */
|
||||
i += (size_t)[(id <Func>)self categ_instance_func2]; /* { dg-warning ".\\-categ_instance_func2. not implemented by protocol" } */
|
||||
i += [(id)self categ_instance_func2];
|
||||
return i + (int)[super instance_func0]; /* { dg-warning ".Object. may not respond to .\\-instance_func0." } */
|
||||
return i + (size_t)[super instance_func0]; /* { dg-warning ".Object. may not respond to .\\-instance_func0." } */
|
||||
}
|
||||
- (int) categ_instance_func2
|
||||
{
|
||||
|
@ -22,7 +22,7 @@
|
||||
0,
|
||||
[Cls meth1],
|
||||
[2 + 1] = 3,
|
||||
[2 * 2 ... 5] = (int)[0 meth2], /* { dg-warning "invalid receiver type" } */
|
||||
[2 * 2 ... 5] = (size_t)[0 meth2], /* { dg-warning "invalid receiver type" } */
|
||||
/* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 25 } */
|
||||
/* { dg-warning "will be assumed to return .id. and accept" "" { target *-*-* } 25 } */
|
||||
/* { dg-warning ".\.\.\.. as arguments" "" { target *-*-* } 25 } */
|
||||
|
Loading…
x
Reference in New Issue
Block a user