# HG changeset patch # User Tassilo Philipp # Date 1495907951 -7200 # Node ID 3581366858a6428d9d53e96b4002b32237ffd870 # Parent 03f0b683918a1c8ee33455415d733302ebf344bc - cleanups diff -r 03f0b683918a -r 3581366858a6 autovar/autovar_CC.h --- a/autovar/autovar_CC.h Sat May 27 19:57:34 2017 +0200 +++ b/autovar/autovar_CC.h Sat May 27 19:59:11 2017 +0200 @@ -33,6 +33,8 @@ #define CC_INTEL #elif defined(_MSC_VER) #define CC_MSVC +#elif defined(__clang__) || defined(__llvm__) +#define CC_CLANG #elif defined(__GNUC__) #define CC_GNU #elif defined(__WATCOMC__) diff -r 03f0b683918a -r 3581366858a6 dyncall/dyncall_call.S --- a/dyncall/dyncall_call.S Sat May 27 19:57:34 2017 +0200 +++ b/dyncall/dyncall_call.S Sat May 27 19:59:11 2017 +0200 @@ -80,7 +80,7 @@ /* Use .note.GNU-stack to explicitly indicate a non-exec stack, b/c of bad */ /* default behaviour when translating handwritten assembly files (needed on */ -/* GNU/* platforms, Android and FreeBSD, as tests have shown). */ +/* GNU platforms, Android and FreeBSD, as tests have shown). */ #if (defined(DC__C_CLANG) || defined(DC__C_GNU)) && defined(__ELF__) && (defined(DC__OS_Linux) || defined(DC__OS_FreeBSD)) .section .note.GNU-stack,"",%progbits #endif diff -r 03f0b683918a -r 3581366858a6 dyncallback/dyncall_callback_arch.S --- a/dyncallback/dyncall_callback_arch.S Sat May 27 19:57:34 2017 +0200 +++ b/dyncallback/dyncall_callback_arch.S Sat May 27 19:59:11 2017 +0200 @@ -82,7 +82,7 @@ /* Use .note.GNU-stack to explicitly indicate a non-exec stack, b/c of bad */ /* default behaviour when translating handwritten assembly files (needed on */ -/* GNU/* platforms, Android and FreeBSD, as tests have shown). */ +/* GNU platforms, Android and FreeBSD, as tests have shown). */ #if (defined(DC__C_CLANG) || defined(DC__C_GNU)) && defined(__ELF__) && (defined(DC__OS_Linux) || defined(DC__OS_FreeBSD)) .section .note.GNU-stack,"",%progbits #endif