removed arm_register_from_name() callback
[libfirm] / ir / be / arm / bearch_arm.c
index 2c0e544..5fd8f58 100644 (file)
@@ -1098,14 +1098,6 @@ static ir_graph **arm_get_irg_list(const void *self, ir_graph ***irg_list) {
        return NULL;
 }
 
-/**
- * Called by the frontend to encode a register name into a backend specific way
- */
-static unsigned arm_register_from_name(const char *regname) {
-       /* NYI */
-       return 0;
-}
-
 /**
  * Returns the libFirm configuration parameter for this backend.
  */
@@ -1120,13 +1112,13 @@ static const backend_params *arm_get_libfirm_params(void) {
        };
        static backend_params p = {
                1,     /* need dword lowering */
-               0,     /* don't support inlien assembler yet */
+               0,     /* don't support inline assembler yet */
+               0,     /* no different calling conventions */
                NULL,  /* no additional opcodes */
                NULL,  /* will be set later */
                NULL,  /* but yet no creator function */
                NULL,  /* context for create_intrinsic_fkt */
                NULL,  /* no if conversion settings */
-               arm_register_from_name, /* register names */
        };
 
        p.dep_param = &ad;