diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-10 01:10:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-10 01:10:18 +0000 |
commit | be5f332c4d9eb302cd020047c382aa133ad59501 (patch) | |
tree | c52533b463aecd5c6b9f72aec4fb28718f7d1528 /lib/CodeGen/CGCall.cpp | |
parent | f742eb0196e1b25c0b71e91da4a2b856d16a1dab (diff) |
how about we initialize RecursionState.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134855 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGCall.cpp')
-rw-r--r-- | lib/CodeGen/CGCall.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp index 7387fa7096..c954e7329a 100644 --- a/lib/CodeGen/CGCall.cpp +++ b/lib/CodeGen/CGCall.cpp @@ -252,8 +252,7 @@ const CGFunctionInfo &CodeGenTypes::getFunctionInfo(CanQualType ResTy, // Lookup or create unique function info. llvm::FoldingSetNodeID ID; - CGFunctionInfo::Profile(ID, Info, ResTy, - ArgTys.begin(), ArgTys.end()); + CGFunctionInfo::Profile(ID, Info, ResTy, ArgTys.begin(), ArgTys.end()); void *InsertPos = 0; CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, InsertPos); |