Implement binary emitter for fpush.
[libfirm] / ir / adt / pset_new.c
index 975557f..a2e5339 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.
  *
@@ -23,9 +23,7 @@
  * @author  Matthias Braun
  * @version $Id$
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
 
 #include "pset_new.h"
 
@@ -54,5 +52,5 @@
 
 int pset_new_contains(const pset_new_t *pset_new, const ValueType val)
 {
-       return pset_new_find(pset_new, val) != NullValue;
+       return pset_new_find(pset_new, val);
 }