Commit b8d90086 authored by Mateusz Holenko's avatar Mateusz Holenko

mor1kx: Do not generate the ror instruction

The mor1kx core does not support `l.ror` instruction
by default, but gcc/clang flags allowed the
compiler to generate it.
parent 54598ed2
......@@ -47,7 +47,6 @@ class MOR1KX(CPU):
def gcc_flags(self):
flags = "-mhard-mul "
flags += "-mhard-div "
flags += "-mror "
flags += "-D__mor1kx__ "
return flags
......@@ -55,7 +54,6 @@ class MOR1KX(CPU):
def clang_flags(self):
flags = "-mhard-mul "
flags += "-mhard-div "
flags += "-mror "
flags += "-mffl1 "
flags += "-maddc "
flags += "-D__mor1kx__ "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment