commit | 31f82dff21ef07787a6333a1ff95f89d21fe9372 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Jun 05 23:49:06 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Jun 05 23:49:06 2007 +0000 |
tree | a7d35d7f42f01f2e217953d6f5e91b09ff3338ca | |
parent | 7948422b78e3cccbba0576d9f758c3cdf2f7fc0e [diff] [blame] |
Fix a user-reported error building with GCC 3.4.4 on Cygwin. llvm-svn: 37445
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp index 54ed25c..c10f8d7 100644 --- a/llvm/lib/VMCore/Function.cpp +++ b/llvm/lib/VMCore/Function.cpp
@@ -271,7 +271,7 @@ } const FunctionType *Intrinsic::getType(ID id, const Type **Tys, - uint32_t numTys) { + unsigned numTys) { const Type *ResultTy = NULL; std::vector<const Type*> ArgTys; bool IsVarArg = false;