[llvm-commits] [llvm] r48824 - in /llvm/branches/ggreif/use-diet/include/llvm: Function.h Instructions.h
Gabor Greif
ggreif at gmail.com
Wed Mar 26 08:09:28 PDT 2008
Author: ggreif
Date: Wed Mar 26 10:09:27 2008
New Revision: 48824
URL: http://llvm.org/viewvc/llvm-project?rev=48824&view=rev
Log:
detabify
Modified:
llvm/branches/ggreif/use-diet/include/llvm/Function.h
llvm/branches/ggreif/use-diet/include/llvm/Instructions.h
Modified: llvm/branches/ggreif/use-diet/include/llvm/Function.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/ggreif/use-diet/include/llvm/Function.h?rev=48824&r1=48823&r2=48824&view=diff
==============================================================================
--- llvm/branches/ggreif/use-diet/include/llvm/Function.h (original)
+++ llvm/branches/ggreif/use-diet/include/llvm/Function.h Wed Mar 26 10:09:27 2008
@@ -114,7 +114,7 @@
public:
static Function *Create(const FunctionType *Ty, LinkageTypes Linkage,
- const std::string &N = "", Module *M = 0) {
+ const std::string &N = "", Module *M = 0) {
return new(0) Function(Ty, Linkage, N, M);
}
Modified: llvm/branches/ggreif/use-diet/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/ggreif/use-diet/include/llvm/Instructions.h?rev=48824&r1=48823&r2=48824&view=diff
==============================================================================
--- llvm/branches/ggreif/use-diet/include/llvm/Instructions.h (original)
+++ llvm/branches/ggreif/use-diet/include/llvm/Instructions.h Wed Mar 26 10:09:27 2008
@@ -940,24 +940,24 @@
public:
template<typename InputIterator>
static CallInst *Create(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
- const std::string &Name = "", Instruction *InsertBefore = 0) {
+ const std::string &Name = "", Instruction *InsertBefore = 0) {
return new(ArgEnd - ArgBegin + 1) CallInst(Func, ArgBegin, ArgEnd, Name, InsertBefore);
}
template<typename InputIterator>
static CallInst *Create(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
- const std::string &Name, BasicBlock *InsertAtEnd) {
+ const std::string &Name, BasicBlock *InsertAtEnd) {
return new(ArgEnd - ArgBegin + 1) CallInst(Func, ArgBegin, ArgEnd, Name, InsertAtEnd);
}
static CallInst *Create(Value *F, Value *Actual, const std::string& Name = "",
- Instruction *InsertBefore = 0) {
+ Instruction *InsertBefore = 0) {
return new(2) CallInst(F, Actual, Name, InsertBefore);
}
static CallInst *Create(Value *F, Value *Actual, const std::string& Name,
- BasicBlock *InsertAtEnd) {
+ BasicBlock *InsertAtEnd) {
return new(2) CallInst(F, Actual, Name, InsertAtEnd);
}
static CallInst *Create(Value *F, const std::string &Name = "",
- Instruction *InsertBefore = 0) {
+ Instruction *InsertBefore = 0) {
return new(1) CallInst(F, Name, InsertBefore);
}
static CallInst *Create(Value *F, const std::string &Name, BasicBlock *InsertAtEnd) {
@@ -1381,7 +1381,7 @@
}
public:
static PHINode *Create(const Type *Ty, const std::string &Name = "",
- Instruction *InsertBefore = 0) {
+ Instruction *InsertBefore = 0) {
return new PHINode(Ty, Name, InsertBefore);
}
static PHINode *Create(const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd) {
More information about the llvm-commits
mailing list