Lines Matching +full:mingw +full:- +full:use +full:- +full:gas
2 * Copyright (c) 2017-2024 The Khronos Group Inc.
3 * Copyright (c) 2017-2024 Valve Corporation
4 * Copyright (c) 2017-2024 LunarG, Inc.
8 * you may not use this file except in compliance with the License.
11 * http://www.apache.org/licenses/LICENSE-2.0
25 // __USE_MINGW_ANSI_STDIO is needed to use the %zu format specifier with mingw-w64.
68 #define SIZE_T_FMT "%-8zu"
70 #define SIZE_T_FMT "%-8lu"
85 GAS = 3, enumerator
97 } else if (!strcmp(argv[i], "GAS")) { in main()
98 assembler = GAS; in main()
102 return -1; in main()
106 // clang-format off in main()
129 // clang-format on in main()
136 …fprintf(file, "%-32s equ " SIZE_T_FMT "; %s\n", values[i].name, values[i].value, values[i].comment… in main()
146 …fprintf(file, "%-32s EQU " SIZE_T_FMT "; %s\n", values[i].name, values[i].value, values[i].comment… in main()
149 } else if (assembler == GAS) { in main()
167 …fprintf(file, ".set %-32s, " SIZE_T_FMT "%s %s\n", values[i].name, values[i].value, comment_delimi… in main()