Renamed FunctionType::hasEqualArgumentTypes to FunctionType::hasEqualParameterTypes

This commit is contained in:
Jesse Busman
2018-08-06 13:05:06 +02:00
committed by chriseth
parent 13d3006376
commit 3fcd62921e
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1035,7 +1035,7 @@ public:
/// expression the function is called on.
bool canTakeArguments(TypePointers const& _arguments, TypePointer const& _selfType = TypePointer()) const;
/// @returns true if the types of parameters are equal (doesn't check return parameter types)
bool hasEqualArgumentTypes(FunctionType const& _other) const;
bool hasEqualParameterTypes(FunctionType const& _other) const;
/// @returns true if the ABI is used for this call (only meaningful for external calls)
bool isBareCall() const;