ffi 1.9.21 → 1.9.22

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of ffi might be problematic. Click here for more details.

Files changed (151) hide show
  1. checksums.yaml +5 -5
  2. checksums.yaml.gz.sig +3 -0
  3. data.tar.gz.sig +0 -0
  4. data/.gitignore +22 -0
  5. data/.gitmodules +3 -0
  6. data/.travis.yml +52 -0
  7. data/.yardopts +5 -0
  8. data/Gemfile +15 -0
  9. data/{spec/ffi/LICENSE.SPECS → LICENSE.SPECS} +1 -1
  10. data/README.md +1 -1
  11. data/Rakefile +28 -3
  12. data/appveyor.yml +22 -0
  13. data/ext/ffi_c/Call.c +1 -22
  14. data/ext/ffi_c/Call.h +0 -9
  15. data/ext/ffi_c/Closure.c +54 -0
  16. data/ext/ffi_c/{ClosurePool.h → Closure.h} +13 -23
  17. data/ext/ffi_c/Function.c +16 -25
  18. data/ext/ffi_c/Function.h +1 -2
  19. data/ext/ffi_c/FunctionInfo.c +0 -4
  20. data/ext/ffi_c/MethodHandle.c +33 -268
  21. data/ext/ffi_c/extconf.rb +3 -3
  22. data/ext/ffi_c/ffi.c +2 -2
  23. data/ext/ffi_c/libffi.bsd.mk +3 -3
  24. data/ext/ffi_c/libffi.darwin.mk +1 -1
  25. data/ext/ffi_c/libffi.gnu.mk +1 -1
  26. data/ext/ffi_c/libffi.mk +2 -2
  27. data/ext/ffi_c/libffi.vc.mk +1 -1
  28. data/ext/ffi_c/libffi.vc64.mk +1 -1
  29. data/ext/ffi_c/libffi/.appveyor.yml +48 -0
  30. data/ext/ffi_c/libffi/.gitignore +36 -0
  31. data/ext/ffi_c/libffi/.travis.yml +30 -0
  32. data/ext/ffi_c/libffi/.travis/install.sh +14 -0
  33. data/ext/ffi_c/libffi/Makefile.am +5 -3
  34. data/ext/ffi_c/libffi/acinclude.m4 +6 -0
  35. data/ext/ffi_c/libffi/autogen.sh +1 -1
  36. data/ext/ffi_c/libffi/config.guess +1466 -0
  37. data/ext/ffi_c/libffi/config.sub +1836 -0
  38. data/ext/ffi_c/libffi/configure.ac +2 -2
  39. data/ext/ffi_c/libffi/configure.host +15 -3
  40. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +11 -15
  41. data/ext/ffi_c/libffi/include/ffi.h.in +6 -1
  42. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +465 -59
  43. data/ext/ffi_c/libffi/src/aarch64/ffi.c +33 -10
  44. data/ext/ffi_c/libffi/src/aarch64/sysv.S +2 -2
  45. data/ext/ffi_c/libffi/src/arm/ffi.c +12 -1
  46. data/ext/ffi_c/libffi/src/arm/sysv.S +1 -1
  47. data/ext/ffi_c/libffi/src/closures.c +143 -97
  48. data/ext/ffi_c/libffi/src/ia64/unix.S +2 -0
  49. data/ext/ffi_c/libffi/src/mips/ffi.c +8 -0
  50. data/ext/ffi_c/libffi/src/mips/ffitarget.h +1 -1
  51. data/ext/ffi_c/libffi/src/mips/n32.S +2 -0
  52. data/ext/ffi_c/libffi/src/powerpc/aix.S +239 -1
  53. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +250 -3
  54. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +86 -5
  55. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +3 -0
  56. data/ext/ffi_c/libffi/src/x86/ffi.c +3 -1
  57. data/ext/ffi_c/libffi/src/x86/ffi64.c +26 -5
  58. data/ext/ffi_c/libffi/src/x86/sysv.S +2 -2
  59. data/ext/ffi_c/libffi/src/x86/unix64.S +1 -1
  60. data/ext/ffi_c/libffi/src/x86/win64.S +1 -1
  61. data/ext/ffi_c/libffi/testsuite/Makefile.am +2 -1
  62. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +2 -1
  63. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
  64. data/ffi.gemspec +14 -1
  65. data/lib/ffi/library.rb +1 -1
  66. data/lib/ffi/version.rb +1 -1
  67. data/samples/getlogin.rb +8 -0
  68. data/samples/getpid.rb +8 -0
  69. data/samples/gettimeofday.rb +18 -0
  70. data/samples/hello.rb +7 -0
  71. data/samples/inotify.rb +60 -0
  72. data/samples/pty.rb +76 -0
  73. data/samples/qsort.rb +21 -0
  74. data/samples/sample_helper.rb +6 -0
  75. metadata +59 -81
  76. metadata.gz.sig +0 -0
  77. data/ext/ffi_c/ClosurePool.c +0 -283
  78. data/gen/Rakefile +0 -30
  79. data/libtest/Benchmark.c +0 -52
  80. data/libtest/BoolTest.c +0 -34
  81. data/libtest/BufferTest.c +0 -31
  82. data/libtest/ClosureTest.c +0 -205
  83. data/libtest/EnumTest.c +0 -51
  84. data/libtest/FunctionTest.c +0 -70
  85. data/libtest/GNUmakefile +0 -149
  86. data/libtest/GlobalVariable.c +0 -62
  87. data/libtest/LastErrorTest.c +0 -21
  88. data/libtest/NumberTest.c +0 -132
  89. data/libtest/PointerTest.c +0 -63
  90. data/libtest/ReferenceTest.c +0 -23
  91. data/libtest/StringTest.c +0 -34
  92. data/libtest/StructTest.c +0 -243
  93. data/libtest/UnionTest.c +0 -43
  94. data/libtest/VariadicTest.c +0 -99
  95. data/spec/ffi/async_callback_spec.rb +0 -35
  96. data/spec/ffi/bitmask_spec.rb +0 -575
  97. data/spec/ffi/bool_spec.rb +0 -32
  98. data/spec/ffi/buffer_spec.rb +0 -279
  99. data/spec/ffi/callback_spec.rb +0 -773
  100. data/spec/ffi/custom_param_type.rb +0 -37
  101. data/spec/ffi/custom_type_spec.rb +0 -74
  102. data/spec/ffi/dup_spec.rb +0 -52
  103. data/spec/ffi/enum_spec.rb +0 -423
  104. data/spec/ffi/errno_spec.rb +0 -20
  105. data/spec/ffi/ffi_spec.rb +0 -28
  106. data/spec/ffi/fixtures/Benchmark.c +0 -52
  107. data/spec/ffi/fixtures/BitmaskTest.c +0 -51
  108. data/spec/ffi/fixtures/BoolTest.c +0 -34
  109. data/spec/ffi/fixtures/BufferTest.c +0 -31
  110. data/spec/ffi/fixtures/ClosureTest.c +0 -205
  111. data/spec/ffi/fixtures/EnumTest.c +0 -51
  112. data/spec/ffi/fixtures/FunctionTest.c +0 -142
  113. data/spec/ffi/fixtures/GNUmakefile +0 -149
  114. data/spec/ffi/fixtures/GlobalVariable.c +0 -62
  115. data/spec/ffi/fixtures/LastErrorTest.c +0 -21
  116. data/spec/ffi/fixtures/NumberTest.c +0 -132
  117. data/spec/ffi/fixtures/PipeHelper.h +0 -21
  118. data/spec/ffi/fixtures/PipeHelperPosix.c +0 -41
  119. data/spec/ffi/fixtures/PipeHelperWindows.c +0 -72
  120. data/spec/ffi/fixtures/PointerTest.c +0 -63
  121. data/spec/ffi/fixtures/ReferenceTest.c +0 -23
  122. data/spec/ffi/fixtures/StringTest.c +0 -34
  123. data/spec/ffi/fixtures/StructTest.c +0 -243
  124. data/spec/ffi/fixtures/UnionTest.c +0 -43
  125. data/spec/ffi/fixtures/VariadicTest.c +0 -99
  126. data/spec/ffi/fixtures/classes.rb +0 -438
  127. data/spec/ffi/function_spec.rb +0 -97
  128. data/spec/ffi/io_spec.rb +0 -16
  129. data/spec/ffi/library_spec.rb +0 -286
  130. data/spec/ffi/long_double.rb +0 -30
  131. data/spec/ffi/managed_struct_spec.rb +0 -68
  132. data/spec/ffi/memorypointer_spec.rb +0 -78
  133. data/spec/ffi/number_spec.rb +0 -247
  134. data/spec/ffi/platform_spec.rb +0 -114
  135. data/spec/ffi/pointer_spec.rb +0 -285
  136. data/spec/ffi/rbx/attach_function_spec.rb +0 -34
  137. data/spec/ffi/rbx/memory_pointer_spec.rb +0 -198
  138. data/spec/ffi/rbx/spec_helper.rb +0 -6
  139. data/spec/ffi/rbx/struct_spec.rb +0 -18
  140. data/spec/ffi/spec_helper.rb +0 -93
  141. data/spec/ffi/string_spec.rb +0 -118
  142. data/spec/ffi/strptr_spec.rb +0 -50
  143. data/spec/ffi/struct_by_ref_spec.rb +0 -43
  144. data/spec/ffi/struct_callback_spec.rb +0 -69
  145. data/spec/ffi/struct_initialize_spec.rb +0 -35
  146. data/spec/ffi/struct_packed_spec.rb +0 -50
  147. data/spec/ffi/struct_spec.rb +0 -882
  148. data/spec/ffi/typedef_spec.rb +0 -91
  149. data/spec/ffi/union_spec.rb +0 -67
  150. data/spec/ffi/variadic_spec.rb +0 -132
  151. data/spec/spec.opts +0 -4
@@ -1,20 +0,0 @@
1
- #
2
- # This file is part of ruby-ffi.
3
- # For licensing, see LICENSE.SPECS
4
- #
5
-
6
- require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
7
-
8
- describe "FFI.errno" do
9
- module LibTest
10
- extend FFI::Library
11
- ffi_lib TestLibrary::PATH
12
- attach_function :setLastError, [ :int ], :void
13
- end
14
-
15
- it "FFI.errno contains errno from last function" do
16
- LibTest.setLastError(0)
17
- LibTest.setLastError(0x12345678)
18
- expect(FFI.errno).to eq(0x12345678)
19
- end
20
- end
@@ -1,28 +0,0 @@
1
- #
2
- # This file is part of ruby-ffi.
3
- # For licensing, see LICENSE.SPECS
4
- #
5
-
6
- require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
7
-
8
- describe "FFI" do
9
-
10
- describe ".map_library_name" do
11
-
12
- let(:prefix) { FFI::Platform::LIBPREFIX }
13
- let(:suffix) { FFI::Platform::LIBSUFFIX }
14
-
15
- it "should add platform library extension if not present" do
16
- expect(FFI.map_library_name("#{prefix}dummy")).to eq("#{prefix}dummy.#{suffix}")
17
- end
18
-
19
- it "should add platform library extension even if lib suffix is present in name" do
20
- expect(FFI.map_library_name("#{prefix}dummy_with_#{suffix}")).to eq("#{prefix}dummy_with_#{suffix}.#{suffix}")
21
- end
22
-
23
- it "should return Platform::LIBC when called with 'c'" do
24
- expect(FFI.map_library_name('c')).to eq(FFI::Library::LIBC)
25
- end
26
-
27
- end
28
- end
@@ -1,52 +0,0 @@
1
- /*
2
- * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
- *
4
- * For licensing, see LICENSE.SPECS
5
- */
6
- #include <sys/types.h>
7
- #include <stdint.h>
8
-
9
- void returnVoid() {
10
-
11
- }
12
-
13
- void returnVoidI(int arg) {
14
-
15
- }
16
- int returnInt() {
17
- return 0;
18
- }
19
-
20
- int returnIntI(int arg) {
21
- return arg;
22
- }
23
-
24
- typedef int8_t s8;
25
- typedef uint8_t u8;
26
- typedef int16_t s16;
27
- typedef uint16_t u16;
28
- typedef int32_t s32;
29
- typedef uint32_t u32;
30
- typedef int64_t s64;
31
- typedef uint64_t u64;
32
- typedef float f32;
33
- typedef double f64;
34
- typedef void v;
35
- typedef char* S;
36
- typedef void* P;
37
-
38
- #define B6(R, T1, T2, T3, T4, T5, T6) R bench_##T1##T2##T3##T4##T5##T6##_##R(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6) {}
39
- #define B5(R, T1, T2, T3, T4, T5) R bench_##T1##T2##T3##T4##T5##_##R(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5) {}
40
- #define B4(R, T1, T2, T3, T4) R bench_##T1##T2##T3##T4##_##R(T1 a1, T2 a2, T3 a3, T4 a4) {}
41
- #define B3(R, T1, T2, T3) R bench_##T1##T2##T3##_##R(T1 a1, T2 a2, T3 a3) {}
42
- #define B2(R, T1, T2) R bench_##T1##T2##_##R(T1 a1, T2 a2) {}
43
- #define B1(R, T1) R bench_##T1##_##R(T1 a1) {}
44
- #define BrV(T) B1(v, T); B2(v, T, T); B3(v, T, T, T); B4(v, T, T, T, T); B5(v, T, T, T, T, T); B6(v, T, T, T, T, T, T);
45
- BrV(u32);
46
- BrV(s32);
47
- BrV(s64);
48
- BrV(u64);
49
- BrV(f32);
50
- BrV(f64);
51
- BrV(S);
52
- BrV(P);
@@ -1,51 +0,0 @@
1
- /*
2
- * Copyright (c) 2017 Brice Videau. All rights reserved.
3
- *
4
- * For licensing, see LICENSE.SPECS
5
- */
6
- #include <stdint.h>
7
-
8
- int test_untagged_bitmask(int val) {
9
- return val;
10
- }
11
-
12
- int test_untagged_typedef_bitmask(int val) {
13
- return val;
14
- }
15
-
16
- uint8_t test_untagged_nonint_bitmask(uint8_t val) {
17
- return val;
18
- }
19
-
20
- uint16_t test_tagged_nonint_bitmask1(uint16_t val) {
21
- return val;
22
- }
23
-
24
- uint32_t test_tagged_nonint_bitmask2(uint32_t val) {
25
- return val;
26
- }
27
-
28
- uint64_t test_tagged_nonint_bitmask3(uint64_t val) {
29
- return val;
30
- }
31
-
32
- typedef enum {c1 = (1<<0), c2 = (1<<1), c3 = (1<<2), c4 = (1<<3)} bitmask_type1;
33
- int test_tagged_typedef_bitmask1(int val) {
34
- return val;
35
- }
36
-
37
- typedef enum {c5 = (1<<2), c6 = (1<<3), c7 = (1<<4), c8 = (1<<5)} bitmask_type2;
38
- int test_tagged_typedef_bitmask2(int val) {
39
- return val;
40
- }
41
-
42
- typedef enum {c9 = (1<<2), c10 = (1<<3), c11 = (1<<5), c12 = (1<<6)} bitmask_type3;
43
- int test_tagged_typedef_bitmask3(int val) {
44
- return val;
45
- }
46
-
47
- typedef enum {c13 = (1<<2), c14 = (1<<4), c15 = (1<<6), c16 = (1<<8)} bitmask_type4;
48
- int test_tagged_typedef_bitmask4(int val) {
49
- return val;
50
- }
51
-
@@ -1,34 +0,0 @@
1
- /*
2
- * Copyright (c) 2007 Wayne Meissner.
3
- * Copyright (c) 2009 Aman Gupta.
4
- *
5
- * All rights reserved.
6
- *
7
- * For licensing, see LICENSE.SPECS
8
- */
9
-
10
- #include <stdbool.h>
11
-
12
- bool
13
- bool_return_true()
14
- {
15
- return true;
16
- }
17
-
18
- bool
19
- bool_return_false()
20
- {
21
- return false;
22
- }
23
-
24
- bool
25
- bool_return_val(bool value)
26
- {
27
- return value;
28
- }
29
-
30
- bool
31
- bool_reverse_val(bool value)
32
- {
33
- return value ? false : true;
34
- }
@@ -1,31 +0,0 @@
1
- /*
2
- * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
- *
4
- * For licensing, see LICENSE.SPECS
5
- */
6
-
7
-
8
- #define MEMSET(buf, value, size) do { \
9
- int i; for (i = 0; i < size; ++i) buf[i] = value; \
10
- } while(0)
11
- #define MEMCPY(dst, src, size) do { \
12
- int i; for (i = 0; i < size; ++i) dst[i] = src[i]; \
13
- } while(0)
14
-
15
- #define FILL(JTYPE, CTYPE) \
16
- void fill##JTYPE##Buffer(CTYPE* buf, CTYPE value, int size) { MEMSET(buf, value, size); }
17
-
18
- #define COPY(JTYPE, CTYPE) \
19
- void copy##JTYPE##Buffer(CTYPE* dst, CTYPE* src, int size) { MEMCPY(dst, src, size); }
20
-
21
- #define FUNC(JTYPE, CTYPE) \
22
- FILL(JTYPE, CTYPE); \
23
- COPY(JTYPE, CTYPE)
24
-
25
- FUNC(Byte, char);
26
- FUNC(Short, short);
27
- FUNC(Int, int);
28
- FUNC(Long, long long);
29
- FUNC(Float, float);
30
- FUNC(Double, double);
31
-
@@ -1,205 +0,0 @@
1
- /*
2
- * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
- *
4
- * For licensing, see LICENSE.SPECS
5
- */
6
-
7
- #include <stdlib.h>
8
- #include <stdbool.h>
9
- #ifndef _WIN32
10
- # include <pthread.h>
11
- #else
12
- # include <windows.h>
13
- # include <process.h>
14
- #endif
15
-
16
- #define R(T, rtype) rtype testClosureVr##T(rtype (*closure)(void)) { \
17
- return closure != NULL ? (*closure)() : (rtype) 0; \
18
- }
19
-
20
- #define P(T, ptype) void testClosure##T##rV(void (*closure)(ptype), ptype a1) { \
21
- if (closure != NULL) (*closure)(a1); \
22
- }
23
-
24
- void testClosureVrV(void (*closure)(void))
25
- {
26
- (*closure)();
27
- }
28
-
29
- R(Z, bool);
30
- R(B, char);
31
- R(S, short);
32
- R(I, int);
33
- R(L, long);
34
- R(J, long long);
35
- R(LL, long long);
36
- R(F, float);
37
- R(D, double);
38
- R(P, const void*);
39
-
40
-
41
- P(Z, bool);
42
- P(B, char);
43
- P(S, short);
44
- P(I, int);
45
- P(L, long);
46
- P(J, long long);
47
- P(LL, long long);
48
- P(F, float);
49
- P(D, double);
50
- P(P, const void*);
51
- P(UL, unsigned long);
52
-
53
- #if defined(_WIN32) && !defined(_WIN64)
54
- bool __stdcall testClosureStdcall(long *a1, void __stdcall(*closure)(void *, long), long a2) { \
55
- void* sp_pre;
56
- void* sp_post;
57
-
58
- asm volatile (" movl %%esp,%0" : "=g" (sp_pre));
59
- (*closure)(a1, a2);
60
- asm volatile (" movl %%esp,%0" : "=g" (sp_post));
61
-
62
- /* %esp before pushing parameters on the stack and after the call returns
63
- * should be equal, if both sides respects the stdcall convention */
64
- return sp_pre == sp_post;
65
- }
66
- #endif
67
-
68
- void testOptionalClosureBrV(void (*closure)(char), char a1)
69
- {
70
- if (closure) {
71
- (*closure)(a1);
72
- }
73
- }
74
-
75
-
76
- struct ThreadVrV {
77
- void (*closure)(void);
78
- int count;
79
- };
80
-
81
- static void *
82
- threadVrV(void *arg)
83
- {
84
- struct ThreadVrV* t = (struct ThreadVrV *) arg;
85
-
86
- int i;
87
- for (i = 0; i < t->count; i++) {
88
- (*t->closure)();
89
- }
90
-
91
- return NULL;
92
- }
93
-
94
- void testThreadedClosureVrV(void (*closure)(void), int n)
95
- {
96
- struct ThreadVrV arg = {closure, n};
97
- #ifndef _WIN32
98
- pthread_t t;
99
- pthread_create(&t, NULL, threadVrV, &arg);
100
- pthread_join(t, NULL);
101
- #else
102
- HANDLE hThread = (HANDLE) _beginthread((void (*)(void *))threadVrV, 0, &arg);
103
- WaitForSingleObject(hThread, INFINITE);
104
- #endif
105
- }
106
-
107
- struct s8f32s32 {
108
- char s8;
109
- float f32;
110
- int s32;
111
- };
112
-
113
- // Takes a struct argument
114
- void testClosureTrV(void (*closure)(struct s8f32s32 s), struct s8f32s32* s)
115
- {
116
- (*closure)(*s);
117
- }
118
-
119
- // Returns a struct value
120
- struct s8f32s32 testClosureVrT(struct s8f32s32 (*closure)())
121
- {
122
- return (*closure)();
123
- }
124
-
125
- typedef int (*returnTypeClosure_t)(int) ;
126
- typedef returnTypeClosure_t (*lookupClosure_t)();
127
-
128
- int testReturnsClosure(lookupClosure_t lookup, int val)
129
- {
130
- returnTypeClosure_t func = lookup ? (*lookup)() : NULL;
131
- return func ? (*func)(val) : 0;
132
- }
133
-
134
- static int multiplyByTwo(int value)
135
- {
136
- return value * 2;
137
- }
138
-
139
- returnTypeClosure_t testReturnsFunctionPointer()
140
- {
141
- return multiplyByTwo;
142
- }
143
-
144
- typedef int (*argumentClosure_t)(int);
145
- typedef int (*withArgumentClosure_t)(argumentClosure_t, int);
146
-
147
- int testArgumentClosure(withArgumentClosure_t closure_with, argumentClosure_t closure_arg, int val)
148
- {
149
- return (*closure_with)(closure_arg, val);
150
- }
151
-
152
-
153
- //
154
- // These macros produce functions of the form:
155
- // testClosureBIrV(void (*closure)(char, int), char a1, int a2) {}
156
- //
157
- #define C2_(J1, J2, N1, N2) \
158
- void testClosure##J1##J2##rV(void (*closure)(N1, N2), N1 a1, N2 a2) \
159
- { \
160
- if (closure != NULL) (*closure)(a1, a2); \
161
- }
162
-
163
- #define C2(J, N) \
164
- C2_(B, J, char, N) \
165
- C2_(S, J, short, N) \
166
- C2_(I, J, int, N) \
167
- C2_(LL, J, long long, N) \
168
- C2_(F, J, float, N) \
169
- C2_(D, J, double, N) \
170
-
171
-
172
- C2(B, char);
173
- C2(S, short);
174
- C2(I, int);
175
- C2(LL, long long);
176
- C2(F, float);
177
- C2(D, double);
178
-
179
- #define C3_(J1, J2, J3, N1, N2, N3) \
180
- void testClosure##J1##J2##J3##rV(void (*closure)(N1, N2, N3), N1 a1, N2 a2, N3 a3) \
181
- { \
182
- (*closure)(a1, a2, a3); \
183
- }
184
-
185
-
186
- #define C3(J, N) \
187
- C3_(B, J, B, char, N, char) \
188
- C3_(S, J, S, short, N, short) \
189
- C3_(I, J, I, int, N, int) \
190
- C3_(LL, J, LL, long long, N, long long) \
191
- C3_(F, J, F, float, N, float) \
192
- C3_(D, J, D, double, N, double) \
193
-
194
- C3(B, char);
195
- C3(S, short);
196
- C3(I, int);
197
- C3(LL, long long);
198
- C3(F, float);
199
- C3(D, double);
200
- C3_(B, S, I, char, short, int);
201
- C3_(B, S, LL, char, short, long long);
202
- C3_(LL, S, B, long long, short, char);
203
- C3_(LL, B, S, long long, char, short);
204
-
205
-
@@ -1,51 +0,0 @@
1
- /*
2
- * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
- *
4
- * For licensing, see LICENSE.SPECS
5
- */
6
- #include <stdint.h>
7
-
8
- int test_untagged_enum(int val) {
9
- return val;
10
- }
11
-
12
- int test_untagged_typedef_enum(int val) {
13
- return val;
14
- }
15
-
16
- uint8_t test_untagged_nonint_enum(uint8_t val) {
17
- return val;
18
- }
19
-
20
- uint16_t test_tagged_nonint_enum1(uint16_t val) {
21
- return val;
22
- }
23
-
24
- uint32_t test_tagged_nonint_enum2(uint32_t val) {
25
- return val;
26
- }
27
-
28
- uint64_t test_tagged_nonint_enum3(uint64_t val) {
29
- return val;
30
- }
31
-
32
- typedef enum {c1, c2, c3, c4} enum_type1;
33
- enum_type1 test_tagged_typedef_enum1(enum_type1 val) {
34
- return val;
35
- }
36
-
37
- typedef enum {c5 = 42, c6, c7, c8} enum_type2;
38
- enum_type2 test_tagged_typedef_enum2(enum_type2 val) {
39
- return val;
40
- }
41
-
42
- typedef enum {c9 = 42, c10, c11 = 4242, c12} enum_type3;
43
- enum_type3 test_tagged_typedef_enum3(enum_type3 val) {
44
- return val;
45
- }
46
-
47
- typedef enum {c13 = 42, c14 = 4242, c15 = 424242, c16 = 42424242} enum_type4;
48
- enum_type4 test_tagged_typedef_enum4(enum_type4 val) {
49
- return val;
50
- }
51
-