diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-15 00:03:46 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-15 00:03:46 +0000 |
commit | b71600b11f28adeb0c187b361c36539890cf9c08 (patch) | |
tree | f0fb76871a425ca0a2ef7cfe594a3c615da18fb1 /gcc/config/alpha | |
parent | 578887bba0b979d7bfa65df1ae02e2f9d48cd5d1 (diff) | |
download | gcc-b71600b11f28adeb0c187b361c36539890cf9c08.tar.gz |
Fix bootstrap on Alpha.
* config/alpha/alpha.c (alpha_initialize_trampoline): Remove temp,
temp1 local variables.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134299 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/alpha')
-rw-r--r-- | gcc/config/alpha/alpha.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 02d3b684ae8..867bb08dd5c 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -5449,7 +5449,7 @@ void alpha_initialize_trampoline (rtx tramp, rtx fnaddr, rtx cxt, int fnofs, int cxtofs, int jmpofs) { - rtx temp, temp1, addr; + rtx addr; /* VMS really uses DImode pointers in memory at this point. */ enum machine_mode mode = TARGET_ABI_OPEN_VMS ? Pmode : ptr_mode; |