added more optiopns to hook_opt_kind regarding Confirm optimizations
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 21 Jun 2005 15:01:40 +0000 (15:01 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 21 Jun 2005 15:01:40 +0000 (15:01 +0000)
[r6081]

ir/ir/irhooks.h

index e1e1c60..bffbb22 100644 (file)
@@ -47,7 +47,9 @@ typedef enum {
   HOOK_OPT_POLY_CALL,   /**< polymorphic call optimization */
   HOOK_OPT_IF_CONV,     /**< an if conversion was tried */
   HOOK_OPT_FUNC_CALL,   /**< a real function call was removed */
-  HOOK_OPT_CONFIRM,     /**< a value was substituted by a const due to a Confirm */
+  HOOK_OPT_CONFIRM,     /**< a value was substituted by another due to a Confirm */
+  HOOK_OPT_CONFIRM_C,   /**< a value was substituted by a const due to a Confirm */
+  HOOK_OPT_CONFIRM_E,   /**< a value was evaluated due to a Confirm */
   HOOK_LOWERED,         /**< lowered */
   HOOK_OPT_LAST
 } hook_opt_kind;