projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d4ea83
)
(convert_move): Fix typo in extendqfh2 case.
author
Richard Kenner
<kenner@gcc.gnu.org>
Tue, 13 Feb 1996 23:11:23 +0000
(18:11 -0500)
committer
Richard Kenner
<kenner@gcc.gnu.org>
Tue, 13 Feb 1996 23:11:23 +0000
(18:11 -0500)
From-SVN: r11267
gcc/expr.c
patch
|
blob
|
history
diff --git
a/gcc/expr.c
b/gcc/expr.c
index 79fb387afc0c378810330c658c834a1caade8c23..639d9fe1f2488428326fc4bdcf6b1e96c9b62d2d 100644
(file)
--- a/
gcc/expr.c
+++ b/
gcc/expr.c
@@
-612,9
+612,9
@@
convert_move (to, from, unsignedp)
rtx value;
#ifdef HAVE_extendqfhf2
- if (HAVE_extendqf
s
f2 && from_mode == QFmode && to_mode == HFmode)
+ if (HAVE_extendqf
h
f2 && from_mode == QFmode && to_mode == HFmode)
{
- emit_unop_insn (CODE_FOR_extendqf
s
f2, to, from, UNKNOWN);
+ emit_unop_insn (CODE_FOR_extendqf
h
f2, to, from, UNKNOWN);
return;
}
#endif