Fix ashlqi3 bug
From-SVN: r29267
This commit is contained in:
parent
81b3411cdf
commit
f6fbeda886
@ -1,3 +1,8 @@
|
||||
Fri Sep 10 11:58:55 1999 Bernd Schmidt <bernds@cygnus.co.uk>
|
||||
|
||||
* i386.md (ashlqi3): For NON_QI_REG_P regs, use sall. Fix some
|
||||
operand size modifiers.
|
||||
|
||||
Fri Sep 10 10:32:32 1999 Bernd Schmidt <bernds@cygnus.co.uk>
|
||||
|
||||
* c-common.c (c_common_nodes_and_builtins): Don't build
|
||||
|
@ -5288,14 +5288,14 @@
|
||||
if (REG_P (operands[2]))
|
||||
{
|
||||
if (NON_QI_REG_P (operands[1]))
|
||||
return \"sal{l}\\t{%k2, %0|%0, %k2}\";
|
||||
return \"sal{l}\\t{%b2, %k0|%k0, %b2}\";
|
||||
else
|
||||
return \"sal{b}\\t{%b2, %0|%0, %b2}\";
|
||||
}
|
||||
else
|
||||
{
|
||||
if (NON_QI_REG_P (operands[1]))
|
||||
return \"sal{b}\\t{%2, %k0|%k0, %2}\";
|
||||
return \"sal{l}\\t{%2, %k0|%k0, %2}\";
|
||||
else
|
||||
return \"sal{b}\\t{%2, %0|%0, %2}\";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user