Fixed configure: should work now in a build directory again
[libfirm] / ir / adt / hashptr.h
index 8f70cc4..f61d539 100644 (file)
@@ -16,6 +16,6 @@
  * hash a pointer value: Pointer addresses are mostly aligned to 4
  * or 8 bytes. So we remove the lowest 3 bits
  */
-#define HASHPTR(ptr)    (((char *)ptr - (char *)0) >> 3)
+#define HASH_PTR(ptr)    (((char *)ptr - (char *)0) >> 3)
 
 #endif /* __HASHPTR_H__ */