[llvm-commits] CVS: llvm/include/llvm/AbstractTypeUser.h GlobalVariable.h InstrTypes.h IntrinsicInst.h
Misha Brukman
brukman at cs.uiuc.edu
Thu Apr 21 20:20:29 PDT 2005
Changes in directory llvm/include/llvm:
AbstractTypeUser.h updated: 1.24 -> 1.25
GlobalVariable.h updated: 1.33 -> 1.34
InstrTypes.h updated: 1.43 -> 1.44
IntrinsicInst.h updated: 1.6 -> 1.7
---
Log message:
Convert tabs to spaces
---
Diffs of the changes: (+9 -9)
AbstractTypeUser.h | 2 +-
GlobalVariable.h | 2 +-
InstrTypes.h | 4 ++--
IntrinsicInst.h | 10 +++++-----
4 files changed, 9 insertions(+), 9 deletions(-)
Index: llvm/include/llvm/AbstractTypeUser.h
diff -u llvm/include/llvm/AbstractTypeUser.h:1.24 llvm/include/llvm/AbstractTypeUser.h:1.25
--- llvm/include/llvm/AbstractTypeUser.h:1.24 Thu Apr 21 15:11:51 2005
+++ llvm/include/llvm/AbstractTypeUser.h Thu Apr 21 22:20:18 2005
@@ -52,7 +52,7 @@
/// its internal state to reference NewType instead of OldType.
///
virtual void refineAbstractType(const DerivedType *OldTy,
- const Type *NewTy) = 0;
+ const Type *NewTy) = 0;
/// The other case which AbstractTypeUsers must be aware of is when a type
/// makes the transition from being abstract (where it has clients on it's
Index: llvm/include/llvm/GlobalVariable.h
diff -u llvm/include/llvm/GlobalVariable.h:1.33 llvm/include/llvm/GlobalVariable.h:1.34
--- llvm/include/llvm/GlobalVariable.h:1.33 Thu Apr 21 15:11:51 2005
+++ llvm/include/llvm/GlobalVariable.h Thu Apr 21 22:20:18 2005
@@ -48,7 +48,7 @@
/// automatically inserted into the end of the specified modules global list.
///
GlobalVariable(const Type *Ty, bool isConstant, LinkageTypes Linkage,
- Constant *Initializer = 0, const std::string &Name = "",
+ Constant *Initializer = 0, const std::string &Name = "",
Module *Parent = 0);
/// isExternal - Is this global variable lacking an initializer? If so, the
Index: llvm/include/llvm/InstrTypes.h
diff -u llvm/include/llvm/InstrTypes.h:1.43 llvm/include/llvm/InstrTypes.h:1.44
--- llvm/include/llvm/InstrTypes.h:1.43 Thu Apr 21 15:11:51 2005
+++ llvm/include/llvm/InstrTypes.h Thu Apr 21 22:20:18 2005
@@ -151,7 +151,7 @@
/// Instruction is allowed to be a dereferenced end iterator.
///
static BinaryOperator *create(BinaryOps Op, Value *S1, Value *S2,
- const std::string &Name = "",
+ const std::string &Name = "",
Instruction *InsertBefore = 0);
/// create() - Construct a binary instruction, given the opcode and the two
@@ -159,7 +159,7 @@
/// BasicBlock specified.
///
static BinaryOperator *create(BinaryOps Op, Value *S1, Value *S2,
- const std::string &Name,
+ const std::string &Name,
BasicBlock *InsertAtEnd);
/// create* - These methods just forward to create, and are useful when you
Index: llvm/include/llvm/IntrinsicInst.h
diff -u llvm/include/llvm/IntrinsicInst.h:1.6 llvm/include/llvm/IntrinsicInst.h:1.7
--- llvm/include/llvm/IntrinsicInst.h:1.6 Thu Apr 21 15:11:51 2005
+++ llvm/include/llvm/IntrinsicInst.h Thu Apr 21 22:20:18 2005
@@ -53,11 +53,11 @@
static inline bool classof(const CallInst *I) {
if (const Function *CF = I->getCalledFunction())
switch (CF->getIntrinsicID()) {
- case Intrinsic::dbg_stoppoint:
- case Intrinsic::dbg_region_start:
- case Intrinsic::dbg_region_end:
- case Intrinsic::dbg_func_start:
- case Intrinsic::dbg_declare:
+ case Intrinsic::dbg_stoppoint:
+ case Intrinsic::dbg_region_start:
+ case Intrinsic::dbg_region_end:
+ case Intrinsic::dbg_func_start:
+ case Intrinsic::dbg_declare:
return true;
default: break;
}
More information about the llvm-commits
mailing list