aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNick Clifton <nickc@gcc.gnu.org>2002-04-02 16:44:39 +0000
committerNick Clifton <nickc@gcc.gnu.org>2002-04-02 16:44:39 +0000
commitc414f8a95d95f11e2e7dfd6fa0373deb8b01519f (patch)
tree95e1d5458ab3e6cc33c04a4a0e042775e70d18df /gcc
parent36aadc29f3b5a0383cec13da1d95502b898354a8 (diff)
downloadgcc-c414f8a95d95f11e2e7dfd6fa0373deb8b01519f.zip
gcc-c414f8a95d95f11e2e7dfd6fa0373deb8b01519f.tar.gz
gcc-c414f8a95d95f11e2e7dfd6fa0373deb8b01519f.tar.bz2
Remove previous delta
From-SVN: r51757
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/arm/arm.c6
2 files changed, 1 insertions, 11 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f04f064..3cb11a0 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,9 +1,3 @@
-2002-04-02 Nick Clifton <nickc@cambridge.redhat.com>
-
- * config/arm/arm.c (output_return_instruction): Do not create the
- conditional part of the return instruction, if there is no
- condition to be used.
-
Tue Apr 2 06:47:40 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* stor-layout.c (layout_type, case ARRAY_TYPE): Give one-element array
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index 75dd8b2..ba5eb05 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -7209,11 +7209,7 @@ output_return_instruction (operand, really_return, reverse)
if (current_function_calls_alloca && !really_return)
abort ();
- /* Construct the conditional part of the instruction(s) to be emitted. */
- if (operand)
- sprintf (conditional, "%%?%%%c0", reverse ? 'D' : 'd');
- else
- * conditional = 0;
+ sprintf (conditional, "%%?%%%c0", reverse ? 'D' : 'd');
return_used_this_function = 1;