X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeverify.h;h=ee625fdf0e6394fd5b9b73d9afd3fb2fedd3f5d4;hb=4414cc5000681584a075ad1f6242d4a0b8445f57;hp=adcbe7e835b3678486f32b98fb8296d7c5e9db7b;hpb=ee7d02f0224c71ad158f07c193d731ad7762c884;p=libfirm diff --git a/ir/be/beverify.h b/ir/be/beverify.h index adcbe7e83..ee625fdf0 100644 --- a/ir/be/beverify.h +++ b/ir/be/beverify.h @@ -38,26 +38,26 @@ * * @param irg The irg to check. * @param cls The register class to check. - * @return 1 if the pressure is valid, 0 otherwise. + * @return true if the pressure is valid, false otherwise. */ -int be_verify_register_pressure(ir_graph *irg, - const arch_register_class_t* cls); +bool be_verify_register_pressure(ir_graph *irg, + const arch_register_class_t* cls); /** * Does some sanity checks on the schedule. * * @param irg The irg to check - * @return 1 if the schedule is valid, 0 otherwise + * @return true if the schedule is valid, false otherwise */ -int be_verify_schedule(ir_graph *irg); +bool be_verify_schedule(ir_graph *irg); /** * Verify spillslots * * @param irg The irg to check - * @return 1 if spillslots are valid, 0 otherwise + * @return true if spillslots are valid, false otherwise */ -int be_verify_spillslots(ir_graph *irg); +bool be_verify_spillslots(ir_graph *irg); /** * Verify register allocation: Checks that no 2 live nodes have the same @@ -69,13 +69,6 @@ int be_verify_spillslots(ir_graph *irg); */ bool be_verify_register_allocation(ir_graph *irg); -/** - * Check, if the SSA dominance property is fulfilled. - * @param irg The graph. - * @return true if dominance property is fulfilled, false otherwise - */ -bool be_check_dominance(ir_graph *irg); - /** * Check the given liveness information against a freshly computed one. */