Types should be const.

llvm-svn: 33001
diff --git a/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp b/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp
index 2c5821a..483c5702 100644
--- a/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp
+++ b/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp
@@ -1091,7 +1091,7 @@
     // Get the type we will cast to, based on size of the string
     Value* dest = ci->getOperand(1);
     Value* src = ci->getOperand(2);
-    Type* castType = 0;
+    const Type* castType = 0;
     switch (len)
     {
       case 0:
@@ -1195,7 +1195,7 @@
     // Get the type we will cast to, based on size of memory area to fill, and
     // and the value we will store there.
     Value* dest = ci->getOperand(1);
-    Type* castType = 0;
+    const Type* castType = 0;
     switch (len) {
       case 1:
         castType = Type::Int8Ty;