Changeset 100275 in vbox for trunk/include
- Timestamp:
- Jun 23, 2023 10:54:34 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asmdefs-arm.h
r100257 r100275 128 128 129 129 /** 130 * Mangles the name so it can be referenced using DECLASM() in the C/C++ world. 131 * 132 * @returns a_SymbolC with the necessary prefix/postfix. 133 * @param a_SymbolC A C symbol name to mangle as needed. 134 */ 135 #if defined(RT_OS_DARWIN) 136 # define NAME(a_SymbolC) _ ## a_SymbolC 137 #else 138 # define NAME(a_SymbolC) a_SymbolC 139 #endif 140 141 /** 130 142 * Returns the page address of the given symbol (used with the adrp instruction primarily). 131 143 * … … 157 169 158 170 /** @} */ 171 159 172 #endif /* !IPRT_INCLUDED_asmdefs_arm_h */ 160 173
Note:
See TracChangeset
for help on using the changeset viewer.