Commit 5476c289 by Doug Evans

(TARGET_SOFT_FLOAT): Define.

(TARGET_SWITCHES): Add -msoft-float.

From-SVN: r6687
parent 3ae29d63
......@@ -85,6 +85,11 @@ extern int target_flags;
#define TARGET_NO_REUSE_ARGS (target_flags & 256)
/* This means that neither builtin nor emulated float operations are
available, and that GCC should generate libcalls instead. */
#define TARGET_SOFT_FLOAT (target_flags & 512)
#define TARGET_SWITCHES \
{ {"dw", 1}, \
{"ndw", -1}, \
......@@ -103,6 +108,7 @@ extern int target_flags;
{"no-storem-bug", 128}, \
{"reuse-arg-regs", -256}, \
{"no-reuse-arg-regs", 256}, \
{"soft-float", 512}, \
{"", 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