diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 05:25:22 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 05:26:57 -0400 |
commit | c26c6bc0a53a179084b77899e2cd70d88aa5a224 (patch) | |
tree | e2595a4bbee596ea41f6996ead043889d907dafc /sim/ppc/igen.c | |
parent | 5231e3f242247eff7866d344ac10eb66c5a30d56 (diff) | |
download | gdb-c26c6bc0a53a179084b77899e2cd70d88aa5a224.zip gdb-c26c6bc0a53a179084b77899e2cd70d88aa5a224.tar.gz gdb-c26c6bc0a53a179084b77899e2cd70d88aa5a224.tar.bz2 |
sim: ppc: use silent build rules here too
The ppc codebase is unique and doesn't leverage common/, so have to
add silent rules to it specifically.
Diffstat (limited to 'sim/ppc/igen.c')
-rw-r--r-- | sim/ppc/igen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sim/ppc/igen.c b/sim/ppc/igen.c index f0ff06b..6a6dbc3 100644 --- a/sim/ppc/igen.c +++ b/sim/ppc/igen.c @@ -393,7 +393,9 @@ main(int argc, while ((ch = getopt(argc, argv, "F:EI:RSLJT:CB:H:N:o:k:i:n:hc:d:m:s:t:f:")) != -1) { +#if 0 /* For debugging. */ fprintf(stderr, "\t-%c %s\n", ch, (optarg ? optarg : "")); +#endif switch(ch) { case 'C': code |= generate_with_icache; |