get_kind() did not assert anymore, instead returns k_BAD.
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 8 Apr 2004 06:25:31 +0000 (06:25 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 8 Apr 2004 06:25:31 +0000 (06:25 +0000)
[r2637]

ir/common/firm_common.c

index ef3e6ee..6922cef 100644 (file)
 #include "irgraph.h"
 #include "irloop.h"
 
+/**
+ * Ideally, this macro would check if size bytes could be read at
+ * pointer p. No generic solution.
+ */
+#define POINTER_READ(p, size) (p)
+
 /* returns the kind of the thing */
 firm_kind
 get_kind (const void *firm_thing) {
-  assert (firm_thing);
-  return *(firm_kind *)firm_thing;
+  return POINTER_READ(firm_thing, sizeof(firm_kind)) ? *(firm_kind *)firm_thing : k_BAD;
 }