Search

December 02, 2023
Internals »
...64)
	ARCH=x86_64
else
	ARCH=x86
endif

ifeq ($(OS), Win_64)
	# Tags order doesn...
November 25, 2023
General »
...byteswap.h> directly; include <byteswap.h> instead."
#endif

#ifndef _BITS_BYTESWAP_H
#define _BITS_BYTESWAP...
November 04, 2023
Learn »
...const {
        assert(idx < length);
        return ptr[idx];
    }
};
#endif

extern "C" void hello(_d_dynamicArray< const...
September 24, 2023
Issues »
...INT8_T
typedef __signed char           int8_t;
#endif /* _INT8_T */

I'm working around this...
September 09, 2023
Issues »
...M_IX86)

... inline assembler versions go here ...

#endif
---------------------------------

And, well, the inline assembler format is...
June 05, 2023
Issues »
...snn.lib");              // bring in C runtime
library
 #endif
             s->Sclass = SCglobal;
         }
Index: mars.c
===================================================================
--- mars...
May 02, 2023
Issues »
...bsx);
#else
  return __bswap_constant_16 (__bsx);
#endif
}
-----------------

DMD64 D Compiler v2.103.0 Linux

--
April 30, 2023
Issues »
...NORETURN __attribute((noreturn))
#else
# define _X_NORETURN
#endif /* GNUC  */
-----------------

It seems __attribute((noreturn)) is not...
April 29, 2023
Issues »
...else
#  define ISNAN(x)     (isnan(x)!=0)
# endif

Looking at the gcc preprocessor output, this...
March 10, 2023
Issues »
...return __atomic_load_n(p, __ATOMIC_RELAXED);
#endif
}
#endif

```

```
Error: undefined identifier `__atomic_load_n...
1 2 3
Next ›   Last »