diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-30 08:42:00 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-30 08:42:00 +0000 |
commit | a74f8ff15c0c083c77c58071c9fb621af9f0e214 (patch) | |
tree | d399d0d14cbb139f94f318677a808f1b06da9958 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 91dea8252a51ab3a0b763121e3a1a8bbe7613f3d (diff) | |
download | bcm5719-llvm-a74f8ff15c0c083c77c58071c9fb621af9f0e214.tar.gz bcm5719-llvm-a74f8ff15c0c083c77c58071c9fb621af9f0e214.zip |
Add CodeGenOptions::{SoftFloat,FloatABI}, and update the all the (far too many) places to use this instead of using the backend -soft-float and -float-abi= options.
llvm-svn: 90127
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 488eeac32d9..7b37db55354 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -134,12 +134,18 @@ static void CodeGenOptsToArgs(const CodeGenOptions &Opts, } if (Opts.DisableFPElim) Res.push_back("-mdisable-fp-elim"); + if (!Opts.FloatABI.empty()) { + Res.push_back("-mfloat-abi"); + Res.push_back(Opts.FloatABI); + } if (!Opts.LimitFloatPrecision.empty()) { Res.push_back("-mlimit-float-precision"); Res.push_back(Opts.LimitFloatPrecision); } if (Opts.NoZeroInitializedInBSS) Res.push_back("-mno-zero-initialized-bss"); + if (Opts.SoftFloat) + Res.push_back("-msoft-float"); if (Opts.UnwindTables) Res.push_back("-munwind-tables"); if (Opts.RelocationModel != "pic") { |