Skip to content
Snippets Groups Projects
Commit a69f60de authored by Hans-Peter Nilsson's avatar Hans-Peter Nilsson
Browse files

* cris.cpu (movs, movu): Use result of extension operation when

	updating flags.
parent f88e9fd3
No related branches found
No related tags found
No related merge requests found
2007-10-22 Hans-Peter Nilsson <hp@axis.com>
* cris.cpu (movs, movu): Use result of extension operation when
updating flags.
2007-07-04 Nick Clifton <nickc@redhat.com>
* cris.cpu: Update copyright notice to refer to GPLv3.
......
......@@ -2033,9 +2033,10 @@
(.pmacro
(BW)
(sequence
((BW newval))
(set newval Rs)
(set Rd (ext SI newval))
((BW tmpops) (SI newval))
(set tmpops Rs)
(set newval (ext SI tmpops))
(set Rd newval)
(setf-move SI newval)))
)
......@@ -2060,9 +2061,10 @@
(.pmacro
(BW)
(sequence
((BW newval))
(set newval Rs)
(set Rd (zext SI newval))
((BW tmpops) (SI newval))
(set tmpops Rs)
(set newval (zext SI tmpops))
(set Rd newval)
(setf-move SI newval)))
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment