beabi: Turn be_abi_call_flags_t into a struct.
[libfirm] / ir / be / beabi.h
index 5bca530..9b612ce 100644 (file)
 #include "beabi.h"
 #include "beabihelper.h"
 
-struct be_abi_call_flags_bits_t {
+struct be_abi_call_flags_t {
        bool try_omit_fp   : 1; /**< Try to omit the frame pointer. */
        bool call_has_imm  : 1; /**< A call can take the callee's address as an
                                     immediate. */
 };
 
-union be_abi_call_flags_t {
-       be_abi_call_flags_bits_t bits;
-       unsigned val;
-};
-
 struct be_abi_callbacks_t {
        /**
         * Get the between type for that call.
@@ -142,6 +137,4 @@ ir_type *be_abi_call_get_method_type(const be_abi_call_t *call);
 
 void be_abi_introduce(ir_graph *irg);
 
-void be_abi_free(ir_graph *irg);
-
 #endif