aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/pa
diff options
context:
space:
mode:
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>2003-03-23 05:24:27 +0000
committerJohn David Anglin <danglin@gcc.gnu.org>2003-03-23 05:24:27 +0000
commit7772f0a9977adfb2b711979e329a01bdf7ebf9cf (patch)
treecd495c5aee470aef62fc0ffd542a8a3ab6ba139c /gcc/config/pa
parent3ce6bef0f97391a518fe5a7be4a65bb1ed103182 (diff)
downloadgcc-7772f0a9977adfb2b711979e329a01bdf7ebf9cf.zip
gcc-7772f0a9977adfb2b711979e329a01bdf7ebf9cf.tar.gz
gcc-7772f0a9977adfb2b711979e329a01bdf7ebf9cf.tar.bz2
* pa.c (output_cbranch): Fix typo in comment.
From-SVN: r64741
Diffstat (limited to 'gcc/config/pa')
-rw-r--r--gcc/config/pa/pa.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c
index 2a79f85..25dfd45 100644
--- a/gcc/config/pa/pa.c
+++ b/gcc/config/pa/pa.c
@@ -5553,12 +5553,11 @@ output_cbranch (operands, nullify, length, negated, insn)
is asking for a disaster. This can happen when not optimizing and
when jump optimization fails.
- While it usually safe to emit nothing, this can fail if the preceding
- instruction is a nullified branch with an empty delay slot and the
- same branch target as this branch. We could check for this but
- jump optimization should eliminate these jumps. It is always
- safe to emit a nop. */
-
+ While it is usually safe to emit nothing, this can fail if the
+ preceding instruction is a nullified branch with an empty delay
+ slot and the same branch target as this branch. We could check
+ for this but jump optimization should eliminate nop jumps. It
+ is always safe to emit a nop. */
if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
return "nop";