diff options
| author | Eric Christopher <echristo@apple.com> | 2012-09-11 01:36:56 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2012-09-11 01:36:56 +0000 |
| commit | 13453d32ff607850afb839d5ea1df1ef683a55a5 (patch) | |
| tree | 5a23bbe42b97dde33611fd4f84d5707b993de0cd /clang/lib/CodeGen | |
| parent | 5296db0805422c9fe3a209449adae61c4457a02c (diff) | |
| download | bcm5719-llvm-13453d32ff607850afb839d5ea1df1ef683a55a5.tar.gz bcm5719-llvm-13453d32ff607850afb839d5ea1df1ef683a55a5.zip | |
Update comment and space.
llvm-svn: 163586
Diffstat (limited to 'clang/lib/CodeGen')
| -rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index c700f2f2002..2bb98076cf3 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -1985,7 +1985,7 @@ llvm::DISubprogram CGDebugInfo::getFunctionDeclaration(const Decl *D) { // getOrCreateFunctionType - Construct DIType. If it is a c++ method, include // implicit parameter "this". -llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D, +llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl *D, QualType FnType, llvm::DIFile F) { @@ -2000,7 +2000,7 @@ llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D, // "self" pointer is always first argument. llvm::DIType SelfTy = getOrCreateType(OMethod->getSelfDecl()->getType(), F); Elts.push_back(DBuilder.createArtificialType(SelfTy)); - // "cmd" pointer is always second argument. + // "_cmd" pointer is always second argument. llvm::DIType CmdTy = getOrCreateType(OMethod->getCmdDecl()->getType(), F); Elts.push_back(DBuilder.createArtificialType(CmdTy)); // Get rest of the arguments. |

