Changeset f858ca5
- Timestamp:
- Jun 5, 2025, 10:47:33 PM (4 months ago)
- Branches:
- master
- Children:
- 8236f00
- Parents:
- e0350e0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/prototypes.awk
re0350e0 rf858ca5 10 10 # Created On : Sat May 16 07:57:37 2015 11 11 # Last Modified By : Peter A. Buhr 12 # Last Modified On : Mon Mar 10 17:52:39202513 # Update Count : 7 312 # Last Modified On : Thu Jun 5 22:35:57 2025 13 # Update Count : 74 14 14 # 15 15 … … 162 162 163 163 # assorted gcc builltin types 164 # ARM vector floating-point types, strip off text "__builtin.*__" 165 printf( "struct __builtin__Float32x4_t__ {};\n" ); 166 printf( "struct __builtin__Float64x2_t__ {};\n" ); 167 printf( "struct __builtin__SVFloat32_t__ {};\n" ); 168 printf( "struct __builtin__SVFloat64_t__ {};\n" ); 169 printf( "struct __builtin__SVBool_t__ {};\n" ); 164 # ARM vector floating-point types 165 "uname -p" | getline processor # get processor architecture 166 if ( processor == "aarch64" ) { 167 printf( "struct __Float32x4_t;\n" ); 168 printf( "struct __Float64x2_t;\n" ); 169 printf( "struct __SVFloat32_t;\n" ); 170 printf( "struct __SVFloat64_t;\n" ); 171 printf( "struct __SVBool_t;\n" ); 172 } # if 170 173 } # END 171 174
Note:
See TracChangeset
for help on using the changeset viewer.