diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1995-03-29 14:53:59 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1995-03-29 14:53:59 -0800 |
commit | 16361be6311205c4cd0c82d1650d6e182a6b1fa7 (patch) | |
tree | c96e72148a2d6b8b91759cad529daea013898bba | |
parent | 8bd8e1988839e110c99800ad93f49801d6c922f8 (diff) | |
download | gcc-16361be6311205c4cd0c82d1650d6e182a6b1fa7.zip gcc-16361be6311205c4cd0c82d1650d6e182a6b1fa7.tar.gz gcc-16361be6311205c4cd0c82d1650d6e182a6b1fa7.tar.bz2 |
(call_internal1, call_value_internal1): Move %* from start
of assembler output to immediately before the jal.
From-SVN: r9251
-rw-r--r-- | gcc/config/mips/mips.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index da55792..9717b07 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -6112,7 +6112,7 @@ move\\t%0,%z4\\n\\ else if (GET_CODE (target) == CONST_INT) { operands[0] = target; - return \"%*%[li\\t%@,%0\\n\\tjal\\t%2,%@%]\"; + return \"%[li\\t%@,%0\\n\\t%*jal\\t%2,%@%]\"; } else @@ -6269,7 +6269,7 @@ move\\t%0,%z4\\n\\ else if (GET_CODE (target) == CONST_INT) { operands[1] = target; - return \"%*%[li\\t%@,%1\\n\\tjal\\t%3,%@%]\"; + return \"%[li\\t%@,%1\\n\\t%*jal\\t%3,%@%]\"; } else |