arc: em7d/em9d: fix typo in soc flags

fixed typo: mnormm -> -mnorm

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-05-19 10:53:04 -04:00 committed by Anas Nashif
commit ce881890e3
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
KBUILD_CFLAGS += -mcpu=em4_dmips KBUILD_CFLAGS += -mcpu=em4_dmips
soc-cflags = $(call cc-option,-mcpu=em4_dmips -mno-sdata) \ soc-cflags = $(call cc-option,-mcpu=em4_dmips -mno-sdata) \
$(call cc-option,-mdiv-rem -mswap -mnormm) \ $(call cc-option,-mdiv-rem -mswap -mnorm) \
$(call cc-option,-mmpy-option=6 -mbarrel-shifter) \ $(call cc-option,-mmpy-option=6 -mbarrel-shifter) \
$(call cc-option,--param l1-cache-size=16384) \ $(call cc-option,--param l1-cache-size=16384) \
$(call cc-option,--param l1-cache-line-size=32) $(call cc-option,--param l1-cache-line-size=32)

View file

@ -2,7 +2,7 @@
KBUILD_CFLAGS += -mcpu=em4_fpus KBUILD_CFLAGS += -mcpu=em4_fpus
soc-cflags += $(call cc-option,-mcpu=em4_fpus -mno-sdata) \ soc-cflags += $(call cc-option,-mcpu=em4_fpus -mno-sdata) \
$(call cc-option,-mdiv-rem -mswap -mnormm) \ $(call cc-option,-mdiv-rem -mswap -mnorm) \
$(call cc-option,-mmpy-option=6 -mbarrel-shifter) \ $(call cc-option,-mmpy-option=6 -mbarrel-shifter) \
ifeq ($(CONFIG_CODE_DENSITY), y) ifeq ($(CONFIG_CODE_DENSITY), y)
@ -11,4 +11,4 @@ endif
ifeq ($(CONFIG_FLOAT), y) ifeq ($(CONFIG_FLOAT), y)
soc-cflags += $(call cc-option,-mfpu=fpus_all) soc-cflags += $(call cc-option,-mfpu=fpus_all)
endif endif