Commit f9151c43 by Torbjorn Granlund

(TARGET_MULTM): New #define.

(TARGET_SWITCHES): Recognize "-mno-multm".

From-SVN: r8919
parent 42d19160
......@@ -90,6 +90,11 @@ extern int target_flags;
#define TARGET_SOFT_FLOAT (target_flags & 512)
/* This means that we should not emit the multm or mutmu instructions
that some embedded systems' trap handlers don't support. */
#define TARGET_MULTM ((target_flags & 1024) == 0)
#define TARGET_SWITCHES \
{ {"dw", 1}, \
{"ndw", -1}, \
......@@ -109,6 +114,7 @@ extern int target_flags;
{"reuse-arg-regs", -256}, \
{"no-reuse-arg-regs", 256}, \
{"soft-float", 512}, \
{"no-multm", 1024}, \
{"", TARGET_DEFAULT}}
#define TARGET_DEFAULT 3
......
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