source: tests/meta/arch.cfa@ 8789ae4

Last change on this file since 8789ae4 was 456215a, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

Removed another batch of old ast expect files

  • Property mode set to 100644
File size: 676 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// arch.cfa -- Check if all architectures are properly distinguished by the test suite
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.