summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/IRBuilder.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-07-19 00:11:40 +0000
committerBill Wendling <isanbard@gmail.com>2012-07-19 00:11:40 +0000
commitea6397f67b5d18c6db2db9847dc5dad0d9fe553c (patch)
tree11aeb799af3fee770596c3a978a2ef2a1550bf16 /llvm/lib/VMCore/IRBuilder.cpp
parent2b0796504248f3e22dde7ab4a8f697ae494f80d2 (diff)
downloadbcm5719-llvm-ea6397f67b5d18c6db2db9847dc5dad0d9fe553c.tar.gz
bcm5719-llvm-ea6397f67b5d18c6db2db9847dc5dad0d9fe553c.zip
Remove tabs.
llvm-svn: 160477
Diffstat (limited to 'llvm/lib/VMCore/IRBuilder.cpp')
-rw-r--r--llvm/lib/VMCore/IRBuilder.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/VMCore/IRBuilder.cpp b/llvm/lib/VMCore/IRBuilder.cpp
index 2edf698a0e8..5c4e6d96427 100644
--- a/llvm/lib/VMCore/IRBuilder.cpp
+++ b/llvm/lib/VMCore/IRBuilder.cpp
@@ -120,13 +120,13 @@ CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) {
assert(isa<PointerType>(Ptr->getType()) &&
- "lifetime.start only applies to pointers.");
+ "lifetime.start only applies to pointers.");
Ptr = getCastedInt8PtrValue(Ptr);
if (!Size)
Size = getInt64(-1);
else
assert(Size->getType() == getInt64Ty() &&
- "lifetime.start requires the size to be an i64");
+ "lifetime.start requires the size to be an i64");
Value *Ops[] = { Size, Ptr };
Module *M = BB->getParent()->getParent();
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start);
@@ -135,13 +135,13 @@ CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) {
CallInst *IRBuilderBase::CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) {
assert(isa<PointerType>(Ptr->getType()) &&
- "lifetime.end only applies to pointers.");
+ "lifetime.end only applies to pointers.");
Ptr = getCastedInt8PtrValue(Ptr);
if (!Size)
Size = getInt64(-1);
else
assert(Size->getType() == getInt64Ty() &&
- "lifetime.end requires the size to be an i64");
+ "lifetime.end requires the size to be an i64");
Value *Ops[] = { Size, Ptr };
Module *M = BB->getParent()->getParent();
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end);
OpenPOWER on IntegriCloud