Changeset 66111 in vbox
- Timestamp:
- Mar 15, 2017 2:07:18 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit.h
r66053 r66111 38 38 #endif 39 39 40 41 /* 42 * Work around ms_abi trouble in the gcc camp (gcc bugzilla #50818). 43 * ASSUMES all va_lists are in functions with 44 */ 45 #if defined(__GNUC__) && ARCH_BITS == 64 46 # undef va_list 47 # undef va_start 48 # undef va_end 49 # undef va_copy 50 # define va_list __builtin_ms_va_list 51 # define va_start(a_Va, a_Arg) __builtin_ms_va_start(a_Va, a_Arg) 52 # define va_end(a_Va) __builtin_ms_va_end(a_Va) 53 # define va_copy(a_DstVa, a_SrcVa) __builtin_ms_va_copy(a_DstVa, a_SrcVa) 54 #endif 40 55 41 56
Note:
See TracChangeset
for help on using the changeset viewer.