[llvm-commits] [dragonegg] r94911 - /dragonegg/trunk/llvm-convert.cpp
Duncan Sands
baldrick at free.fr
Sat Jan 30 10:18:42 PST 2010
Author: baldrick
Date: Sat Jan 30 12:18:41 2010
New Revision: 94911
URL: http://llvm.org/viewvc/llvm-project?rev=94911&view=rev
Log:
Port commit 94818 (stuart) from llvm-gcc:
Dis-entabulation. No functional change.
Modified:
dragonegg/trunk/llvm-convert.cpp
Modified: dragonegg/trunk/llvm-convert.cpp
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/llvm-convert.cpp?rev=94911&r1=94910&r2=94911&view=diff
==============================================================================
--- dragonegg/trunk/llvm-convert.cpp (original)
+++ dragonegg/trunk/llvm-convert.cpp Sat Jan 30 12:18:41 2010
@@ -744,8 +744,8 @@
// Emit gcroot intrinsic if arg has attribute
if (POINTER_TYPE_P(TREE_TYPE(Args))
- && lookup_attribute ("gcroot", TYPE_ATTRIBUTES(TREE_TYPE(Args))))
- EmitTypeGcroot(Tmp, Args);
+ && lookup_attribute ("gcroot", TYPE_ATTRIBUTES(TREE_TYPE(Args))))
+ EmitTypeGcroot(Tmp, Args);
Client.setName(Name);
Client.setLocation(Tmp);
@@ -1607,7 +1607,7 @@
Fn->setGC("shadow-stack");
Function *gcrootFun = Intrinsic::getDeclaration(TheModule,
- Intrinsic::gcroot);
+ Intrinsic::gcroot);
// The idea is that it's a pointer to type "Value"
// which is opaque* but the routine expects i8** and i8*.
@@ -4572,7 +4572,7 @@
ReadWrite = 0;
} else if (cast<ConstantInt>(ReadWrite)->getZExtValue() > 1) {
warning (0, "invalid second argument to %<__builtin_prefetch%>;"
- " using zero");
+ " using zero");
ReadWrite = 0;
} else {
ReadWrite = Builder.getFolder().CreateIntCast(cast<Constant>(ReadWrite),
@@ -4708,8 +4708,8 @@
// FIXME: is i32 always enough here?
Result = Builder.CreateCall(Intrinsic::getDeclaration(TheModule,
- Intrinsic::eh_dwarf_cfa),
- ConstantInt::get(Type::getInt32Ty(Context), cfa_offset));
+ Intrinsic::eh_dwarf_cfa),
+ ConstantInt::get(Type::getInt32Ty(Context), cfa_offset));
return true;
}
@@ -4769,7 +4769,7 @@
Args.push_back(Offset);
Args.push_back(Handler);
Builder.CreateCall(Intrinsic::getDeclaration(TheModule, IID),
- Args.begin(), Args.end());
+ Args.begin(), Args.end());
Result = Builder.CreateUnreachable();
BeginBlock(BasicBlock::Create(Context));
More information about the llvm-commits
mailing list