summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit8d9336d065b3422319a120ff31ea90477d244f0e (patch)
treece42ba82749b4c8cf79dbf0bb24e2a16435ff94d /llvm/lib/VMCore/Function.cpp
parentb82ea5354ccf7bb9fe62fd173ae5da78c7a0be33 (diff)
downloadbcm5719-llvm-8d9336d065b3422319a120ff31ea90477d244f0e.tar.gz
bcm5719-llvm-8d9336d065b3422319a120ff31ea90477d244f0e.zip
For PR950:
Change signed integer type names to unsigned equivalents. llvm-svn: 32780
Diffstat (limited to 'llvm/lib/VMCore/Function.cpp')
-rw-r--r--llvm/lib/VMCore/Function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp
index 7a44ec07862..e8bbd865906 100644
--- a/llvm/lib/VMCore/Function.cpp
+++ b/llvm/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;
OpenPOWER on IntegriCloud