summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Mips/AsmParser
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-07-18 00:08:50 +0000
committerEric Christopher <echristo@gmail.com>2014-07-18 00:08:50 +0000
commit7394e23423b718615b90d8d87de17a5f6617c81f (patch)
tree94227554267fc0b6384a1caf1ecd15ea57a0965d /llvm/lib/Target/Mips/AsmParser
parentc993933e787e35a3e42564c47c1fc0d816eff3a0 (diff)
downloadbcm5719-llvm-7394e23423b718615b90d8d87de17a5f6617c81f.tar.gz
bcm5719-llvm-7394e23423b718615b90d8d87de17a5f6617c81f.zip
Avoid resetting the UseSoftFloat and FloatABIType on the TargetMachine
Options struct and move the comment to inMips16HardFloat. Use the fact that we now know whether or not we cared about soft float to set the libcalls. Accordingly rename mipsSEUsesSoftFloat to abiUsesSoftFloat and propagate since it's no longer CPU specific. llvm-svn: 213335
Diffstat (limited to 'llvm/lib/Target/Mips/AsmParser')
-rw-r--r--llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
index 2bedb5960ff..53b30f9210b 100644
--- a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
+++ b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
@@ -292,7 +292,7 @@ public:
return STI.getFeatureBits() & Mips::FeatureMips16;
}
// TODO: see how can we get this info.
- bool mipsSEUsesSoftFloat() const { return false; }
+ bool abiUsesSoftFloat() const { return false; }
/// Warn if RegNo is the current assembler temporary.
void WarnIfAssemblerTemporary(int RegNo, SMLoc Loc);
OpenPOWER on IntegriCloud