X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeverify.h;h=bd8d2f7fdb192a1afebe6e4dce8b677ee1bf68a9;hb=5a5b0a8806277f92f5950cfedd8a231f4d00a306;hp=8117f5f0d934a7d2a5c9a4701cf5d532e0bb6599;hpb=7c36344d22a7c306a4e216f135c974bdb9f6b943;p=libfirm diff --git a/ir/be/beverify.h b/ir/be/beverify.h index 8117f5f0d..bd8d2f7fd 100644 --- a/ir/be/beverify.h +++ b/ir/be/beverify.h @@ -36,12 +36,12 @@ * Verifies, that the register pressure for a given register class doesn't exceed the limit * of available registers. * - * @param birg The backend IRG. - * @param cls The register class to check. * @param irg The irg to check. + * @param cls The register class to check. * @return 1 if the pressure is valid, 0 otherwise. */ -int be_verify_register_pressure(const be_irg_t *birg, const arch_register_class_t* cls, ir_graph *irg); +int be_verify_register_pressure(ir_graph *irg, + const arch_register_class_t* cls); /** * Does some sanity checks on the schedule. @@ -49,7 +49,7 @@ int be_verify_register_pressure(const be_irg_t *birg, const arch_register_class_ * @param irg The irg to check * @return 1 if the schedule is valid, 0 otherwise */ -int be_verify_schedule(const be_irg_t *birg); +int be_verify_schedule(ir_graph *irg); /** * Verify spillslots @@ -64,9 +64,9 @@ int be_verify_spillslots(ir_graph *irg); * register assigned, also checks that each scheduled node has a register * assigned. * - * @param birg The birg to check + * @param irg The graph to check * @return 1 if verify succeeded, 0 otherwise */ -int be_verify_register_allocation(const be_irg_t *birg); +int be_verify_register_allocation(ir_graph *irg); #endif