* objc.dg/stret-1.m (glob): Renamed to globa.

From-SVN: r76671
This commit is contained in:
Rainer Orth 2004-01-26 22:13:38 +00:00 committed by Rainer Orth
parent 7f996f9072
commit 32e7d1e9bb
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-01-26 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* objc.dg/stret-1.m (glob): Renamed to globa.
2004-01-26 Mark Mitchell <mark@codesourcery.com>
PR c++/13363

View File

@ -9,7 +9,7 @@ extern void abort(void);
struct astruct {
float a, b;
} glob = { 1.0, 2.0 };
} globa = { 1.0, 2.0 };
struct bstruct {
float a, b, c, d, e, f;
@ -21,7 +21,7 @@ struct bstruct {
@end
@implementation foo : Object
- (struct astruct) stret { return glob; }
- (struct astruct) stret { return globa; }
- (struct bstruct) stretb { return globb; }
@end