diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1995-03-13 21:53:18 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1995-03-13 21:53:18 +0000 |
commit | 0f07e76ca786349628bea1bfd8ea15009aaaed0c (patch) | |
tree | b315dfa7f6b6fa17fed6e9f37cbf64cd64702025 /gcc | |
parent | 59313e4e2505a7222c03aad1a38aa93d5dab391f (diff) | |
download | gcc-0f07e76ca786349628bea1bfd8ea15009aaaed0c.zip gcc-0f07e76ca786349628bea1bfd8ea15009aaaed0c.tar.gz gcc-0f07e76ca786349628bea1bfd8ea15009aaaed0c.tar.bz2 |
Fix typo in last change.
From-SVN: r9177
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 4334237..1afd20f 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -4910,13 +4910,13 @@ "* { #ifndef USING_SVR4_H - if (GET_CODE (operands[1]) == REG) + if (GET_CODE (operands[0]) == REG) return \"{brl|blrl}\;{l|lwz} 2,20(1)\"; return \"bl %z0\;%.\"; #else - if (GET_CODE (operands[1]) == REG) + if (GET_CODE (operands[0]) == REG) return \"{brl|blrl}\"; return \"bl %z0\"; |