sse,mmx: use __amd64__ for 64-bit check
authorDavid Schleef <ds@schleef.org>
Thu, 28 Apr 2011 22:08:14 +0000 (15:08 -0700)
committerDavid Schleef <ds@schleef.org>
Thu, 28 Apr 2011 22:08:56 +0000 (15:08 -0700)
orc/orcprogram-mmx.c
orc/orcprogram-sse.c

index 357f548..ef91f0d 100644 (file)
@@ -88,7 +88,7 @@ orc_compiler_mmx_get_default_flags (void)
 {
   unsigned int flags = 0;
 
-#ifdef HAVE_AMD64
+#ifdef __amd64__
   flags |= ORC_TARGET_MMX_64BIT;
 #endif
   if (_orc_compiler_flag_debug) {
index 8d47e6e..b71d3ff 100644 (file)
@@ -88,7 +88,7 @@ orc_compiler_sse_get_default_flags (void)
 {
   unsigned int flags = 0;
 
-#ifdef HAVE_AMD64
+#ifdef __amd64__
   flags |= ORC_TARGET_SSE_64BIT;
 #endif
   if (_orc_compiler_flag_debug) {