Custom Query (145 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 145)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#32 fixed assert.h fails to compile in non __STRICT_ANSI__ mode Rob Schluntz <rschlunt@…> Thierry Delisle
Description

The following code fails to compile :

extern void foo();

void libFloor() { 
	({
		if( 1 == 0 )
			; 
		else 
			foo(); 
	});
}

This code is equivalent to what can be in assert.h

#35 fixed Function pointer casts are broken Rob Schluntz <rschlunt@…> Thierry Delisle
Description

I need this to work for external scheduling :

extern void save( void (*func)() );

void foo( int a ) {
	save( &foo );
}
#37 fixed Missing generated code Rob Schluntz <rschlunt@…> pabuhr
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)
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.