It does not make any sense to remove AM, which loads a non-GP value to fix register...
[libfirm] / ir / adt / eset.c
index 6408f2e..0ccbb48 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyrigth (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -42,6 +42,7 @@ struct eset {
 static int pcmp(const void *p1, const void *p2, size_t size) {
   const void **q1 = (const void **)p1;
   const void **q2 = (const void **)p2;
+  (void) size;
 
   return *q1 != *q2;
 }