diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-14 23:30:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-14 23:30:43 +0000 |
commit | a119de86a064414622562cfe32953de7f9b0ee40 (patch) | |
tree | 456afbf76527eaa49d51f3d4777dfa6df0787667 /lib/Transforms/Utils/LowerAllocations.cpp | |
parent | bd59d7b603c364da52097f171a110a19c886f7bb (diff) |
Fix old-style type names in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LowerAllocations.cpp')
-rw-r--r-- | lib/Transforms/Utils/LowerAllocations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LowerAllocations.cpp b/lib/Transforms/Utils/LowerAllocations.cpp index 32498958e3..9af47f56ef 100644 --- a/lib/Transforms/Utils/LowerAllocations.cpp +++ b/lib/Transforms/Utils/LowerAllocations.cpp @@ -112,7 +112,7 @@ bool LowerAllocations::runOnBasicBlock(BasicBlock &BB) { if (MallocInst *MI = dyn_cast<MallocInst>(I)) { const Type *AllocTy = MI->getType()->getElementType(); - // malloc(type) becomes sbyte *malloc(size) + // malloc(type) becomes i8 *malloc(size) Value *MallocArg; if (LowerMallocArgToInteger) MallocArg = ConstantInt::get(Type::Int64Ty, |