Opened 8 years ago
Closed 8 years ago
#37 closed defect (fixed)
Missing generated code
| Reported by: | pabuhr | Owned by: | |
|---|---|---|---|
| Priority: | minor | Component: | cfa-cc |
| Version: | 1.0 | Keywords: | |
| Cc: |
Description
void fred() {
int x;
double y;
sizeof( typeof( int ) );
sizeof( typeof( 3 ) );
sizeof( typeof( x ) ); // missing
sizeof( typeof( x + 3 ) );
sizeof( typeof( x + y ) ); // missing
sizeof( typeof( y + 3 ) ); // wrong type (type of 3)
}
cfa test3.c -CFA
CFA Version 1.0.0 (debug)
...
void __fred__F___1(){
int __x__i_2;
double __y__d_2;
((void)sizeof(int ));
((void)sizeof(int ));
((void)sizeof()); // missing
((void)sizeof(int ));
((void)sizeof()); // missing
((void)sizeof(int )); // wrong type (type of 3)
}
Change History (1)
comment:1 by , 8 years ago
| Owner: | set to |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
In 322b97e: