From 39afad0613fad1605718bba2de8f909c6717f7aa Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Sun, 30 Mar 2008 19:38:55 +0000 Subject: [PATCH] Fix comment typo. llvm-svn: 48967 --- lib/VMCore/Constants.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index bd528b0a250..470e247e4cc 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -1510,7 +1510,7 @@ static ManagedStatic > ExprConstants; /// This is a utility function to handle folding of casts and lookup of the -/// cast in the ExprConstants map. It is usedby the various get* methods below. +/// cast in the ExprConstants map. It is used by the various get* methods below. static inline Constant *getFoldedCast( Instruction::CastOps opc, Constant *C, const Type *Ty) { assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");