summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/CodeGenTypes.h
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-01-21 23:35:24 +0000
committerAlp Toker <alp@nuanti.com>2014-01-21 23:35:24 +0000
commit8e5a73f4d3d429d0fda24b364d851e7fe32de6a9 (patch)
treec0320d8d6b062d0d8098aabb9e1faf2734dea1fb /lib/CodeGen/CodeGenTypes.h
parent8b969a8b07d34318c16362dc25e3502ba085aaf9 (diff)
Correct various uses of 'argument' that in fact refer to function parameters
Cleanup only. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@199773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenTypes.h')
-rw-r--r--lib/CodeGen/CodeGenTypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenTypes.h b/lib/CodeGen/CodeGenTypes.h
index 94ca9e21e5..9b7797cb8e 100644
--- a/lib/CodeGen/CodeGenTypes.h
+++ b/lib/CodeGen/CodeGenTypes.h
@@ -136,8 +136,8 @@ public:
/// be converted to an LLVM type (i.e. doesn't depend on an incomplete tag
/// type).
bool isFuncTypeConvertible(const FunctionType *FT);
- bool isFuncTypeArgumentConvertible(QualType Ty);
-
+ bool isFuncParamTypeConvertible(QualType Ty);
+
/// GetFunctionTypeForVTable - Get the LLVM function type for use in a vtable,
/// given a CXXMethodDecl. If the method to has an incomplete return type,
/// and/or incomplete argument types, this will return the opaque type.