Changeset 5ead9f9
- Timestamp:
- Aug 17, 2016, 8:44:06 AM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 926af74
- Parents:
- cbaee0d
- Location:
- src/tests
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/tests/declarationErrors.c ¶
rcbaee0d r5ead9f9 1 // 2 // Cforall Version 1.0.0 Copyright (C) 2016 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 // declarationErrors.c -- 8 // 9 // Author : Peter A. Buhr 10 // Created On : Wed Aug 17 08:23:43 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 17 08:27:15 2016 13 // Update Count : 2 14 // 15 1 16 const short static int volatile x4; 2 17 const static volatile short int x4; 3 static short int volatile static const x9; // duplicate static4 struct { int i; } const static volatile static x18; // duplicate static18 static short int volatile static const x9; // duplicate static 19 struct { int i; } const static volatile static x18; // duplicate static 5 20 struct { int i; } const static volatile static volatile x19; // duplicate static & volatile 6 21 typedef int Int; 7 static Int volatile static const x28; // duplicate static22 static Int volatile static const x28; // duplicate static 8 23 9 const static inline const volatile int f01(); // duplicate const10 volatile inline const volatile static int f02(); // duplicate volatile11 const inline const volatile int static f03(); // duplicate const12 volatile inline static const volatile int f04(); // duplicate volatile13 const static const inline volatile int f05(); // duplicate const14 volatile static const volatile inline int f06(); // duplicate volatile15 const static const volatile int inline f07(); // duplicate const16 volatile static const int inline volatile f08(); // duplicate volatile24 const static inline const volatile int f01(); // duplicate const 25 volatile inline const volatile static int f02(); // duplicate volatile 26 const inline const volatile int static f03(); // duplicate const 27 volatile inline static const volatile int f04(); // duplicate volatile 28 const static const inline volatile int f05(); // duplicate const 29 volatile static const volatile inline int f06(); // duplicate volatile 30 const static const volatile int inline f07(); // duplicate const 31 volatile static const int inline volatile f08(); // duplicate volatile 17 32 18 33 //Dummy main … … 21 36 return 0; 22 37 } 38 39 // Local Variables: // 40 // tab-width: 4 // 41 // compile-command: "cfa declarationErrors.c" // 42 // End: // -
TabularUnified src/tests/declarationSpecifier.c ¶
rcbaee0d r5ead9f9 1 // 2 // Cforall Version 1.0.0 Copyright (C) 2016 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 // declarationSpecifier.c -- 8 // 9 // Author : Peter A. Buhr 10 // Created On : Wed Aug 17 08:21:04 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 17 08:24:33 2016 13 // Update Count : 2 14 // 15 1 16 typedef short int Int; 2 17 … … 78 93 return 0; 79 94 } 95 96 // Local Variables: // 97 // tab-width: 4 // 98 // compile-command: "cfa declarationSpecifier.c" // 99 // End: // -
TabularUnified src/tests/dtor-early-exit.c ¶
rcbaee0d r5ead9f9 1 // 2 // Cforall Version 1.0.0 Copyright (C) 2016 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 // dtor-early-exit.c -- 8 // 9 // Author : Rob Schluntz 10 // Created On : Wed Aug 17 08:26:25 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 17 08:29:37 2016 13 // Update Count : 2 14 // 15 1 16 #include <fstream> 2 17 #include <stdlib> … … 215 230 h(); 216 231 } 232 233 // Local Variables: // 234 // tab-width: 4 // 235 // compile-command: "cfa dtor-early-exit" // 236 // End: // -
TabularUnified src/tests/functions.c ¶
rcbaee0d r5ead9f9 1 // 2 // Cforall Version 1.0.0 Copyright (C) 2016 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 // functions.c -- 8 // 9 // Author : Peter A. Buhr 10 // Created On : Wed Aug 17 08:39:58 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 17 08:40:52 2016 13 // Update Count : 1 14 // 15 1 16 // ANSI function definitions 2 17 … … 165 180 // Local Variables: // 166 181 // tab-width: 4 // 182 // compile-command: "cfa functions.c" // 167 183 // End: // -
TabularUnified src/tests/gccExtensions.c ¶
rcbaee0d r5ead9f9 10 10 // Created On : Sun Aug 14 17:28:17 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Aug 16 14:49:47 201613 // Update Count : 612 // Last Modified On : Wed Aug 17 08:34:57 2016 13 // Update Count : 7 14 14 // 15 15 … … 22 22 23 23 static int y asm( "yy" ); 24 // static * int z asm( "zz" ); // CFA declaration 24 #ifdef __CFA__ 25 static * int z asm( "zz" ); // CFA declaration 26 #endif // __CFA__ 25 27 26 28 int src; -
TabularUnified src/tests/identFuncDeclarator.c ¶
rcbaee0d r5ead9f9 1 // 2 // Cforall Version 1.0.0 Copyright (C) 2016 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 // identFuncDeclarator.c -- 8 // 9 // Author : Peter A. Buhr 10 // Created On : Wed Aug 17 08:36:34 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 17 08:37:06 2016 13 // Update Count : 1 14 // 15 1 16 int main() { 2 17 int f1; … … 97 112 int (* const(* const f81)(int))(); 98 113 } 114 115 // Local Variables: // 116 // tab-width: 4 // 117 // compile-command: "cfa identFuncDeclarator.c" // 118 // End: // -
TabularUnified src/tests/identParamDeclarator.c ¶
rcbaee0d r5ead9f9 1 // 2 // Cforall Version 1.0.0 Copyright (C) 2016 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 // identParamDeclarator.c -- 8 // 9 // Author : Peter A. Buhr 10 // Created On : Wed Aug 17 08:37:56 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 17 08:38:42 2016 13 // Update Count : 1 14 // 15 1 16 int fred( 2 17 int f1, … … 147 162 return 0; 148 163 } 164 165 // Local Variables: // 166 // tab-width: 4 // 167 // compile-command: "cfa identParamDeclarator.c" // 168 // End: // -
TabularUnified src/tests/variableDeclarator.c ¶
rcbaee0d r5ead9f9 1 //Variable declarations test 1 // 2 // Cforall Version 1.0.0 Copyright (C) 2016 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 // variableDeclarator.c -- 8 // 9 // Author : Peter A. Buhr 10 // Created On : Wed Aug 17 08:41:42 2016 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 17 08:42:21 2016 13 // Update Count : 1 14 // 15 16 // Variable declarations test 2 17 int f1; 3 18 int (f2); … … 164 179 return 0; 165 180 } 181 182 // Local Variables: // 183 // tab-width: 4 // 184 // compile-command: "cfa variableDeclarator.c" // 185 // End: //
Note: See TracChangeset
for help on using the changeset viewer.