URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [obj-c++.dg/] [property/] [dotsyntax-22.mm] - Rev 820
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR objc/47784. This testcase used to crash the compiler. */
typedef struct {
float x;
} SomeType;
@interface MyClass
@property(assign,readwrite) SomeType position;
@end
void example (MyClass *x)
{
const SomeType SomeTypeZero = {0.0f};
x.position= SomeTypeZero;
}
Go to most recent revision | Compare with Previous | Blame | View Log