From 7fa8db748a6cd29c30bc3686e111fdc1a202cf8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Fri, 9 Feb 2007 14:19:29 +0000 Subject: [PATCH] adapted to new isa callback --- ir/be/ia32/bearch_ia32.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ir/be/ia32/bearch_ia32.c b/ir/be/ia32/bearch_ia32.c index 9296e2da0..0c7b1892d 100644 --- a/ir/be/ia32/bearch_ia32.c +++ b/ir/be/ia32/bearch_ia32.c @@ -1887,6 +1887,13 @@ static const be_machine_t *ia32_get_machine(const void *self) { return isa->cpu; } +/** + * Return irp irgs in the desired order. + */ +static ir_graph **ia32_get_irg_list(const void *self, ir_graph **irg_list) { + return NULL; +} + /** * Allows or disallows the creation of Psi nodes for the given Phi nodes. * @return 1 if allowed, 0 otherwise @@ -2047,6 +2054,7 @@ const arch_isa_if_t ia32_isa_if = { ia32_get_libfirm_params, ia32_get_allowed_execution_units, ia32_get_machine, + ia32_get_irg_list, }; void be_init_arch_ia32(void) -- 2.20.1