source: benchmark/creation/cfa_gen.cfa @ 28c4f74

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 28c4f74 was dfda49f, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

update benchmarks with new generator implementation

  • Property mode set to 100644
File size: 364 bytes
Line 
1#include "../bench.h"
2
3generator G {
4        volatile int restart; // ensure compiler does not optimize away all the code
5};
6void ?{}( G & g ) { g.restart = 0; }
7void main( G & ) {}
8
9int main( int argc, char * argv[] ) {
10        BENCH_START()
11        BENCH(
12                for ( times ) {
13                         G g;
14                },
15                result
16        )
17        printf( "%g\n", result );
18}
19
20// Local Variables: //
21// tab-width: 4 //
22// End: //
Note: See TracBrowser for help on using the repository browser.