[64af7ac] | 1 | //
|
---|
[5ead9f9] | 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.
|
---|
[64af7ac] | 6 | //
|
---|
| 7 | // declarationSpecifier.cfa --
|
---|
| 8 | //
|
---|
[5ead9f9] | 9 | // Author : Peter A. Buhr
|
---|
| 10 | // Created On : Wed Aug 17 08:21:04 2016
|
---|
| 11 | // Last Modified By : Peter A. Buhr
|
---|
[3908e5d] | 12 | // Last Modified On : Tue Apr 30 18:20:36 2019
|
---|
| 13 | // Update Count : 4
|
---|
[64af7ac] | 14 | //
|
---|
[5ead9f9] | 15 |
|
---|
[62edde5] | 16 | typedef short int Int;
|
---|
| 17 |
|
---|
| 18 | const short int volatile x1;
|
---|
| 19 | static const short int volatile x2;
|
---|
| 20 | const static short int volatile x3;
|
---|
| 21 | const static volatile short int x4;
|
---|
| 22 | const short int static volatile x5;
|
---|
| 23 | const short int volatile static x6;
|
---|
| 24 | const short volatile int static x7;
|
---|
| 25 | short int volatile static const x8;
|
---|
| 26 |
|
---|
| 27 | const volatile struct { int i; } x10;
|
---|
| 28 | const struct { int i; } volatile x11;
|
---|
| 29 | struct { int i; } const volatile x12;
|
---|
| 30 | static const volatile struct { int i; } x13;
|
---|
| 31 | const static struct { int i; } volatile x14;
|
---|
| 32 | struct { int i; } static const volatile x15;
|
---|
| 33 | struct { int i; } const static volatile x16;
|
---|
| 34 | struct { int i; } const volatile static x17;
|
---|
| 35 |
|
---|
| 36 | const Int volatile x20;
|
---|
| 37 | static const Int volatile x21;
|
---|
| 38 | const static Int volatile x22;
|
---|
| 39 | const static Int volatile x23;
|
---|
| 40 | const Int static volatile x24;
|
---|
| 41 | const Int volatile static x25;
|
---|
| 42 | const volatile Int static x26;
|
---|
| 43 | Int volatile static const x27;
|
---|
| 44 |
|
---|
| 45 | const volatile struct { Int i; } x29;
|
---|
| 46 | const struct { Int i; } volatile x30;
|
---|
| 47 | struct { Int i; } const volatile x31;
|
---|
| 48 | static const volatile struct { Int i; } x32;
|
---|
| 49 | const static struct { Int i; } volatile x33;
|
---|
| 50 | struct { Int i; } static const volatile x34;
|
---|
| 51 | struct { Int i; } const static volatile x35;
|
---|
| 52 | struct { Int i; } const volatile static x36;
|
---|
| 53 |
|
---|
[64af7ac] | 54 | _Thread_local int x37;
|
---|
| 55 | __thread int x38;
|
---|
| 56 |
|
---|
[62edde5] | 57 | static inline const volatile int f11();
|
---|
| 58 | inline const volatile static int f12();
|
---|
| 59 | inline const volatile int static f13();
|
---|
| 60 | inline static const volatile int f14();
|
---|
| 61 | static const inline volatile int f15();
|
---|
| 62 | static const volatile inline int f16();
|
---|
| 63 | static const volatile int inline f17();
|
---|
| 64 | static const int inline volatile f18();
|
---|
| 65 |
|
---|
| 66 | short static inline const volatile int f21();
|
---|
| 67 | inline short const volatile static int f22();
|
---|
| 68 | inline const short volatile int static f23();
|
---|
| 69 | inline static const short volatile int f24();
|
---|
| 70 | static const inline volatile short int f25();
|
---|
| 71 | static const volatile inline int short f26();
|
---|
| 72 | static const volatile int inline short f27();
|
---|
| 73 | static const int inline volatile short f28();
|
---|
| 74 |
|
---|
| 75 | static inline const volatile struct { int i; } f31();
|
---|
| 76 | inline const volatile static struct { int i; } f32();
|
---|
| 77 | inline const volatile struct { int i; } static f33();
|
---|
| 78 | inline static const volatile struct { int i; } f34();
|
---|
| 79 | static const inline volatile struct { int i; } f35();
|
---|
| 80 | static const volatile inline struct { int i; } f36();
|
---|
| 81 | static const volatile struct { int i; } inline f37();
|
---|
| 82 | static const struct { int i; } inline volatile f38();
|
---|
| 83 |
|
---|
| 84 | static inline const volatile Int f41();
|
---|
| 85 | inline const volatile static Int f42();
|
---|
| 86 | inline const volatile Int static f43();
|
---|
| 87 | inline static const volatile Int f44();
|
---|
| 88 | static const inline volatile Int f45();
|
---|
| 89 | static const volatile inline Int f46();
|
---|
| 90 | static const volatile Int inline f47();
|
---|
| 91 | static const Int inline volatile f48();
|
---|
| 92 |
|
---|
| 93 | //Dummy main
|
---|
[3908e5d] | 94 | int main( int argc, char const * argv[] ) {}
|
---|
[5ead9f9] | 95 |
|
---|
| 96 | // Local Variables: //
|
---|
| 97 | // tab-width: 4 //
|
---|
[dc8511c] | 98 | // compile-command: "cfa declarationSpecifier.cfa" //
|
---|
[5ead9f9] | 99 | // End: //
|
---|