diff options
Diffstat (limited to 'gcc/config/alpha/alpha.md')
-rw-r--r-- | gcc/config/alpha/alpha.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index e57a9d3..22ea4db 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -5171,7 +5171,7 @@ } }; - bool write = INTVAL (operands[1]) != 0; + bool write = (INTVAL (operands[1]) & 1) != 0; bool lru = INTVAL (operands[2]) != 0; return alt[write][lru]; |