[llvm-commits] CVS: llvm/lib/VMCore/Function.cpp

Chris Lattner sabre at nondot.org
Tue Jun 5 16:49:28 PDT 2007



Changes in directory llvm/lib/VMCore:

Function.cpp updated: 1.128 -> 1.129
---
Log message:

Fix a user-reported error building with GCC 3.4.4 on Cygwin.


---
Diffs of the changes:  (+1 -1)

 Function.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/VMCore/Function.cpp
diff -u llvm/lib/VMCore/Function.cpp:1.128 llvm/lib/VMCore/Function.cpp:1.129
--- llvm/lib/VMCore/Function.cpp:1.128	Tue Jun  5 00:28:26 2007
+++ llvm/lib/VMCore/Function.cpp	Tue Jun  5 18:49:06 2007
@@ -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;






More information about the llvm-commits mailing list