diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-02-22 19:06:13 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-02-22 19:06:13 +0000 |
commit | 8b98bf2d6b83dc2ce85e65ec6af3e1727c5cb62d (patch) | |
tree | db9b34a6e0297c47318542b10415f92d8f5737c3 /llvm/lib/CodeGen/MachineModuleInfo.cpp | |
parent | f224ea69e62a4177a23a099ebb400352c85bbd01 (diff) | |
download | bcm5719-llvm-8b98bf2d6b83dc2ce85e65ec6af3e1727c5cb62d.tar.gz bcm5719-llvm-8b98bf2d6b83dc2ce85e65ec6af3e1727c5cb62d.zip |
Properly emit _fltused with FastISel. Refactor to share code with SDAG.
Patch by Joe Groff!
llvm-svn: 151183
Diffstat (limited to 'llvm/lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineModuleInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineModuleInfo.cpp b/llvm/lib/CodeGen/MachineModuleInfo.cpp index d6df6e292c2..ea98b23c6d5 100644 --- a/llvm/lib/CodeGen/MachineModuleInfo.cpp +++ b/llvm/lib/CodeGen/MachineModuleInfo.cpp @@ -257,7 +257,7 @@ MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI, : ImmutablePass(ID), Context(MAI, MRI, MOFI), ObjFileMMI(0), CompactUnwindEncoding(0), CurCallSite(0), CallsEHReturn(0), CallsUnwindInit(0), DbgInfoAvailable(false), - CallsExternalVAFunctionWithFloatingPointArguments(false) { + UsesVAFloatArgument(false) { initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry()); // Always emit some info, by default "no personality" info. Personalities.push_back(NULL); |