[llvm-commits] CVS: llvm/include/llvm/Instructions.h Value.h
Misha Brukman
brukman at cs.uiuc.edu
Tue Mar 15 19:47:06 PST 2005
Changes in directory llvm/include/llvm:
Instructions.h updated: 1.14 -> 1.15
Value.h updated: 1.74 -> 1.75
---
Log message:
Convert tabs to spaces
---
Diffs of the changes: (+14 -14)
Instructions.h | 26 +++++++++++++-------------
Value.h | 2 +-
2 files changed, 14 insertions(+), 14 deletions(-)
Index: llvm/include/llvm/Instructions.h
diff -u llvm/include/llvm/Instructions.h:1.14 llvm/include/llvm/Instructions.h:1.15
--- llvm/include/llvm/Instructions.h:1.14 Wed Feb 23 23:31:57 2005
+++ llvm/include/llvm/Instructions.h Tue Mar 15 21:46:55 2005
@@ -35,9 +35,9 @@
class AllocationInst : public UnaryInstruction {
protected:
AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
- const std::string &Name = "", Instruction *InsertBefore = 0);
+ const std::string &Name = "", Instruction *InsertBefore = 0);
AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
- const std::string &Name, BasicBlock *InsertAtEnd);
+ const std::string &Name, BasicBlock *InsertAtEnd);
public:
@@ -306,16 +306,16 @@
/// instruction, the second appends the new instruction to the specified
/// BasicBlock.
GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
- const std::string &Name = "", Instruction *InsertBefore =0);
+ const std::string &Name = "", Instruction *InsertBefore =0);
GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
- const std::string &Name, BasicBlock *InsertAtEnd);
+ const std::string &Name, BasicBlock *InsertAtEnd);
/// Constructors - These two constructors are convenience methods because two
/// index getelementptr instructions are so common.
GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1,
- const std::string &Name = "", Instruction *InsertBefore =0);
+ const std::string &Name = "", Instruction *InsertBefore =0);
GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1,
- const std::string &Name, BasicBlock *InsertAtEnd);
+ const std::string &Name, BasicBlock *InsertAtEnd);
~GetElementPtrInst();
virtual GetElementPtrInst *clone() const;
@@ -332,10 +332,10 @@
/// pointer type.
///
static const Type *getIndexedType(const Type *Ptr,
- const std::vector<Value*> &Indices,
- bool AllowStructLeaf = false);
+ const std::vector<Value*> &Indices,
+ bool AllowStructLeaf = false);
static const Type *getIndexedType(const Type *Ptr, Value *Idx0, Value *Idx1,
- bool AllowStructLeaf = false);
+ bool AllowStructLeaf = false);
inline op_iterator idx_begin() { return op_begin()+1; }
inline const_op_iterator idx_begin() const { return op_begin()+1; }
@@ -380,9 +380,9 @@
class SetCondInst : public BinaryOperator {
public:
SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
- const std::string &Name = "", Instruction *InsertBefore = 0);
+ const std::string &Name = "", Instruction *InsertBefore = 0);
SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
- const std::string &Name, BasicBlock *InsertAtEnd);
+ const std::string &Name, BasicBlock *InsertAtEnd);
/// getInverseCondition - Return the inverse of the current condition opcode.
/// For example seteq -> setne, setgt -> setle, setlt -> setge, etc...
@@ -1163,10 +1163,10 @@
const std::vector<Value*> &Params);
public:
InvokeInst(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
- const std::vector<Value*> &Params, const std::string &Name = "",
+ const std::vector<Value*> &Params, const std::string &Name = "",
Instruction *InsertBefore = 0);
InvokeInst(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
- const std::vector<Value*> &Params, const std::string &Name,
+ const std::vector<Value*> &Params, const std::string &Name,
BasicBlock *InsertAtEnd);
~InvokeInst();
Index: llvm/include/llvm/Value.h
diff -u llvm/include/llvm/Value.h:1.74 llvm/include/llvm/Value.h:1.75
--- llvm/include/llvm/Value.h:1.74 Sat Mar 5 20:10:40 2005
+++ llvm/include/llvm/Value.h Tue Mar 15 21:46:55 2005
@@ -197,7 +197,7 @@
template <> inline bool isa_impl<Constant, Value>(const Value &Val) {
return Val.getValueType() == Value::SimpleConstantVal ||
Val.getValueType() == Value::FunctionVal ||
- Val.getValueType() == Value::GlobalVariableVal ||
+ Val.getValueType() == Value::GlobalVariableVal ||
Val.getValueType() == Value::ConstantExprVal ||
Val.getValueType() == Value::ConstantAggregateZeroVal ||
Val.getValueType() == Value::UndefValueVal;
More information about the llvm-commits
mailing list