diff options
| -rw-r--r-- | src/t_x86-64_isel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/t_x86-64_isel.c b/src/t_x86-64_isel.c index 0ad3834..f250a17 100644 --- a/src/t_x86-64_isel.c +++ b/src/t_x86-64_isel.c @@ -22,9 +22,9 @@ static const uchar opflags[NOPER] = { [Oand] = ZF|CLOBF, [Oior] = ZF|CLOBF, [Oxor] = ZF|CLOBF, - [Oshl] = ZF|CLOBF, - [Osar] = ZF|CLOBF, - [Oslr] = ZF|CLOBF, + [Oshl] = CLOBF, + [Osar] = CLOBF, + [Oslr] = CLOBF, [Oequ] = ZF|CLOBF, [Oneq] = ZF|CLOBF, [Olth] = ZF|CLOBF, |