diff options
author | Eric Christopher <echristo@gmail.com> | 2015-12-16 23:10:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-12-16 23:10:53 +0000 |
commit | bfba572425bd2f88c7ae406efe350c323812643f (patch) | |
tree | cf3e206f0b1e1e57b32586f284a327b0329c1d02 /llvm/lib/CodeGen/SelectionDAG | |
parent | be5286629fa828dbc1aaf123dfb4bdfe33473df9 (diff) | |
download | bcm5719-llvm-bfba572425bd2f88c7ae406efe350c323812643f.tar.gz bcm5719-llvm-bfba572425bd2f88c7ae406efe350c323812643f.zip |
Fix funciton->function typo.
llvm-svn: 255841
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp index 6ae38d3258d..b62bd2bd63e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp @@ -165,7 +165,7 @@ void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf, MF->getFrameInfo()->setHasVAStart(true); } - // If we have a musttail call in a variadic funciton, we need to ensure we + // If we have a musttail call in a variadic function, we need to ensure we // forward implicit register parameters. if (const auto *CI = dyn_cast<CallInst>(I)) { if (CI->isMustTailCall() && Fn->isVarArg()) |