diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-31 05:26:44 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-31 05:26:44 +0000 |
commit | 79e21d338c60b4b5a5746fc45e37ea0310606aee (patch) | |
tree | c3e532c60c73e695aa6e26d39d0101f8a4973f7d /lib/VMCore/Function.cpp | |
parent | 9c2e86a8d062b9b6ace654b96e69b9f212eea1db (diff) |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index 7a44ec0786..e8bbd86590 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; |