aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-09-05 18:37:30 +0000
committerRichard Henderson <rth@redhat.com>2001-09-05 18:37:30 +0000
commit4c17e21fdd95b1f0859ee15fdb8df49cd027def9 (patch)
tree579cca17ccb5fae5e80be9c380e8e968dc16a41e
parent5418ba5c872a6c50f7d1e37a38a5b42c00304945 (diff)
* config/alpha/alpha.c (alpha_expand_mov): Initialize temp.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@45422 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/alpha/alpha.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 259a22a7ef0..f05504f2edc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2001-09-05 Richard Henderson <rth@redhat.com>
+
+ * config/alpha/alpha.c (alpha_expand_mov): Initialize temp.
+
2001-09-05 Zack Weinberg <zack@codesourcery.com>
* function.c (ggc_mark_struct_function): Mark f->outer.
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
index 45b6f72472d..3250fe8b2b8 100644
--- a/gcc/config/alpha/alpha.c
+++ b/gcc/config/alpha/alpha.c
@@ -1839,7 +1839,7 @@ alpha_expand_mov (mode, operands)
|| GET_CODE (operands[1]) == CONST_DOUBLE)
{
HOST_WIDE_INT i0, i1;
- rtx temp;
+ rtx temp = NULL_RTX;
if (GET_CODE (operands[1]) == CONST_INT)
{