It does not make any sense to remove AM, which loads a non-GP value to fix register...
[libfirm] / ir / adt / xmalloc.c
index dab6fe3..baac317 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (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.
  *
@@ -51,13 +51,6 @@ void *xmalloc(size_t size) {
   return res;
 }
 
-void *xcalloc(size_t num, size_t size) {
-  void *res = calloc(num, size);
-
-  if (!res) xnomem();
-  return res;
-}
-
 void *xrealloc(void *ptr, size_t size) {
   /* ANSI blesses realloc (0, x) but SunOS chokes on it */
   void *res = ptr ? realloc (ptr, size) : malloc (size);