stage4/generate_c/generate_c.cc
changeset 612 c062ff18d04f
parent 596 4efb11e44065
child 623 3e991e4e1a37
--- a/stage4/generate_c/generate_c.cc	Thu Jul 19 13:42:05 2012 +0100
+++ b/stage4/generate_c/generate_c.cc	Fri Jul 20 15:50:49 2012 +0100
@@ -53,9 +53,8 @@
 
 
 /* Macros to access the constant value of each expression (if it exists) from the annotation introduced to the symbol_c object by constant_folding_c in stage3! */
-/* NOTE: The following test is correct in the presence of a NULL pointer, as the logical evaluation will be suspended as soon as the first condition is false! */
-#define VALID_CVALUE(dtype, symbol)           ((NULL != (symbol)->const_value_##dtype) && (symbol_c::cs_const_value == (symbol)->const_value_##dtype->status))
-#define GET_CVALUE(dtype, symbol)             ((symbol)->const_value_##dtype->value) 
+#define VALID_CVALUE(dtype, symbol)           (symbol_c::cs_const_value == (symbol)->const_value._##dtype.status)
+#define GET_CVALUE(dtype, symbol)             ((symbol)->const_value._##dtype.value)