source: src/examples/control_structures.c@ b72bad4f

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since b72bad4f was 784deab, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

fix recursive include bug in shadow includes, major clean of examples, add several long long routines to prelude

  • Property mode set to 100644
File size: 1.3 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// control_structures.c --
8//
9// Author : Richard C. Bilson
10// Created On : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Jan 4 11:30:30 2016
13// Update Count : 29
14//
15
16int main( void ) {
17 L1: {
18 L2: switch ( 3_333_333 ) { // underscores in constant
19 case 1,2,3: // CFA
20 case 4~8: // CFA
21 case 9 ... 10: // gcc, must have spaces
22 L3: for ( ;; ) {
23 L4: for ( ;; ) {
24 break L1; // labelled break
25 break L2;
26 break L3;
27 break L4;
28 //continue L1; // error: not enclosing loop
29 //continue L2; // error: not enclosing loop
30 continue L3;
31 continue L4;
32 } // for
33 } // for
34 break;
35 default:
36 break L1;
37 } // switch
38 3;
39 int i, j;
40 choose ( 7 ) {
41 case 1,2,3:
42 i = 3;
43 4;
44 fallthru;
45 case 4,5,6:
46 j = 3;
47 default: ;
48 } // choose
49 } // block
50
51#if 0
52 try {
53 int i = 3;
54 } catch( int ) {
55 } catch( double ) {
56 } catch( ... ) {
57 } finally {
58 } // try
59#endif
60
61} // main
62
63// Local Variables: //
64// tab-width: 4 //
65// compile-command: "cfa control_structures.c" //
66// End: //
Note: See TracBrowser for help on using the repository browser.