[llvm-commits] [llvm] r56360 - in /llvm/tags/Apple/llvmCore-2070.1: ./ include/llvm/Constants.h

Bill Wendling isanbard at gmail.com
Fri Sep 19 11:48:02 PDT 2008


Author: void
Date: Fri Sep 19 13:47:59 2008
New Revision: 56360

URL: http://llvm.org/viewvc/llvm-project?rev=56360&view=rev
Log:
Adding http://llvm.org/viewvc/llvm-project?rev=56359&view=rev to 2070.

Added:
    llvm/tags/Apple/llvmCore-2070.1/
      - copied from r56340, llvm/tags/Apple/llvmCore-2070/
Modified:
    llvm/tags/Apple/llvmCore-2070.1/include/llvm/Constants.h

Modified: llvm/tags/Apple/llvmCore-2070.1/include/llvm/Constants.h
URL: http://llvm.org/viewvc/llvm-project/llvm/tags/Apple/llvmCore-2070.1/include/llvm/Constants.h?rev=56360&r1=56340&r2=56360&view=diff

==============================================================================
--- llvm/tags/Apple/llvmCore-2070.1/include/llvm/Constants.h (original)
+++ llvm/tags/Apple/llvmCore-2070.1/include/llvm/Constants.h Fri Sep 19 13:47:59 2008
@@ -753,7 +753,7 @@
   /// operands replaced with the specified values.  The specified operands must
   /// match count and type with the existing ones.
   Constant *getWithOperands(const std::vector<Constant*> &Ops) const {
-    return getWithOperands(&Ops[0], Ops.size());
+    return getWithOperands(&Ops[0], (unsigned)Ops.size());
   }
   Constant *getWithOperands(Constant* const *Ops, unsigned NumOps) const;
   





More information about the llvm-commits mailing list