dump double and aligned register requirements
authorMatthias Braun <matze@braunis.de>
Mon, 9 Aug 2010 14:52:59 +0000 (14:52 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 9 Aug 2010 14:52:59 +0000 (14:52 +0000)
[r27903]

ir/be/bearch.c

index 94a9203..bbc8902 100644 (file)
@@ -304,6 +304,12 @@ void arch_dump_register_req(FILE *F, const arch_register_req_t *req,
                }
        }
 
+       if (req->width != 1) {
+               fprintf(F, " width:%u", req->width);
+       }
+       if (arch_register_req_is(req, aligned)) {
+               fprintf(F, " aligned");
+       }
        if (arch_register_req_is(req, ignore)) {
                fprintf(F, " ignore");
        }