diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-10-21 00:08:21 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-10-21 00:08:21 +0000 |
commit | 83ce5f181f9fdd0633b698e31958d35b3583b332 (patch) | |
tree | c8557795b523571d159b6686b02aa3a5f3d1f0f6 /llvm/lib/CodeGen/MachineModuleInfo.cpp | |
parent | 4ac3ed02197d5991c775407932237d616f17bb5e (diff) | |
download | llvm-83ce5f181f9fdd0633b698e31958d35b3583b332.zip llvm-83ce5f181f9fdd0633b698e31958d35b3583b332.tar.gz llvm-83ce5f181f9fdd0633b698e31958d35b3583b332.tar.bz2 |
CodeGen-Windows: Only emit _fltused if a VarArg function is called with floating point args.
This should be the minimum set of functions that could possibly need it.
llvm-svn: 116978
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 5c8b3731..79622e8 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), ObjFileMMI(0), CurCallSite(0), CallsEHReturn(0), CallsUnwindInit(0), DbgInfoAvailable(false), - CallsExternalFunctionWithFloatingPointArguments(false) { + CallsExternalVAFunctionWithFloatingPointArguments(false) { initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry()); // Always emit some info, by default "no personality" info. Personalities.push_back(NULL); |