source: tests/meta/archVast.cfa@ 1931bb01

ADT ast-experimental pthread-emulation qualifiedEnum
Last change on this file since 1931bb01 was a2f2fda, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Finished support for running tests for new and old ast

  • Property mode set to 100644
File size: 677 bytes
Line 
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// archVast.cfa -- Check if all combinations are of ast/arch are properly distinguished
8//
9// Author : Thierry Delisle
10// Created On : Tue Nov 03 15:04:53 2020
11// Last Modified By :
12// Last Modified On :
13// Update Count :
14//
15
16#if defined( __i386 )
17#define NAME FX86
18#elif defined( __x86_64 )
19#define NAME FX64
20#elif defined( __aarch64__ )
21#define NAME FA64
22#endif
23
24int NAME;
25void NAME() {
26 int NAME;
27 double NAME;
28 (char)NAME;
29 (int(*)())NAME;
30}
31
32int main() {}
Note: See TracBrowser for help on using the repository browser.