File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
regression/ansi-c/gcc_version1 Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1- // None of these types should be defined when emulating gcc-4:
1+ // None of these types should be defined when emulating gcc-4, which clang on
2+ // macOS also emulates:
23
34typedef float _Float32 ;
45typedef double _Float32x ;
Original file line number Diff line number Diff line change 11// These types should *not* be provided when emulating gcc-5:
2+
3+ #ifndef __clang__
24typedef float _Float32 ;
35typedef double _Float32x ;
46typedef double _Float64 ;
@@ -8,3 +10,4 @@ typedef long double _Float128x;
810
911// But this type should:
1012__float128 f128 ;
13+ #endif
Original file line number Diff line number Diff line change 11// All these types should be provided when emulating gcc-7:
2+
3+ #ifndef __clang__
24_Float32 f32 ;
35_Float32x f32x ;
46_Float64 f64 ;
@@ -7,3 +9,4 @@ _Float128 f128;
79_Float128x f128x ;
810
911__float128 gcc_f128 ;
12+ #endif
You can’t perform that action at this time.
0 commit comments