Changeset 81374 in vbox
- Timestamp:
- Oct 18, 2019 9:47:55 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134087
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r81369 r81374 245 245 246 246 247 /** @def \__X86__248 * Indicates that we're compiling for the X86 architecture.249 * @deprecated250 */251 252 /** @def \__AMD64__253 * Indicates that we're compiling for the AMD64 architecture.254 * @deprecated255 */256 247 #if !defined(__X86__) && !defined(__AMD64__) && (defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)) 257 248 # if defined(RT_ARCH_AMD64) 249 /** Indicates that we're compiling for the AMD64 architecture. 250 * @deprecated 251 */ 258 252 # define __AMD64__ 259 253 # elif defined(RT_ARCH_X86) 254 /** Indicates that we're compiling for the X86 architecture. 255 * @deprecated 256 */ 260 257 # define __X86__ 261 258 # else … … 3724 3721 3725 3722 3726 /** @def \__PRETTY_FUNCTION__ 3727 * With GNU C we'd like to use the builtin __PRETTY_FUNCTION__, so define that 3728 * for the other compilers. 3729 */ 3730 #if !defined(__GNUC__) && !defined(__PRETTY_FUNCTION__) 3731 # ifdef _MSC_VER 3723 #if (!defined(__GNUC__) && !defined(__PRETTY_FUNCTION__)) || defined(DOXYGEN_RUNNING) 3724 # if defined(_MSC_VER) || defined(DOXYGEN_RUNNING) 3725 /** With GNU C we'd like to use the builtin __PRETTY_FUNCTION__, so define that 3726 * for the other compilers. */ 3732 3727 # define __PRETTY_FUNCTION__ __FUNCSIG__ 3733 3728 # else
Note:
See TracChangeset
for help on using the changeset viewer.