aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Function.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-31 05:26:44 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-31 05:26:44 +0000
commit79e21d338c60b4b5a5746fc45e37ea0310606aee (patch)
treec3e532c60c73e695aa6e26d39d0101f8a4973f7d /lib/VMCore/Function.cpp
parent9c2e86a8d062b9b6ace654b96e69b9f212eea1db (diff)
downloadexternal_llvm-79e21d338c60b4b5a5746fc45e37ea0310606aee.zip
external_llvm-79e21d338c60b4b5a5746fc45e37ea0310606aee.tar.gz
external_llvm-79e21d338c60b4b5a5746fc45e37ea0310606aee.tar.bz2
For PR950:
Change signed integer type names to unsigned equivalents. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Function.cpp')
-rw-r--r--lib/VMCore/Function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp
index 7a44ec0..e8bbd86 100644
--- a/lib/VMCore/Function.cpp
+++ b/lib/VMCore/Function.cpp
@@ -32,7 +32,7 @@ iplist<BasicBlock> &ilist_traits<BasicBlock>::getList(Function *F) {
}
Argument *ilist_traits<Argument>::createSentinel() {
- Argument *Ret = new Argument(Type::IntTy);
+ Argument *Ret = new Argument(Type::Int32Ty);
// This should not be garbage monitored.
LeakDetector::removeGarbageObject(Ret);
return Ret;