diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-20 04:03:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-20 04:03:25 +0000 |
commit | 90cc3b72cd886acc682e2a287b5b43638f723e28 (patch) | |
tree | 76dba6448e612075a214ba5a97c73fa3964eb204 /include | |
parent | 7f7a3db50c589b634e884b5d1b2f426bc49afcd3 (diff) | |
download | external_llvm-90cc3b72cd886acc682e2a287b5b43638f723e28.zip external_llvm-90cc3b72cd886acc682e2a287b5b43638f723e28.tar.gz external_llvm-90cc3b72cd886acc682e2a287b5b43638f723e28.tar.bz2 |
A few more tabs -> spaces.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/MachineInstrBuilder.h | 6 | ||||
-rw-r--r-- | include/llvm/Support/GraphWriter.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/MachineInstrBuilder.h b/include/llvm/CodeGen/MachineInstrBuilder.h index 65d8201..55b8671 100644 --- a/include/llvm/CodeGen/MachineInstrBuilder.h +++ b/include/llvm/CodeGen/MachineInstrBuilder.h @@ -109,8 +109,8 @@ public: } const MachineInstrBuilder &addMetadata(MDNode *N, - int64_t Offset = 0, - unsigned char TargetFlags = 0) const { + int64_t Offset = 0, + unsigned char TargetFlags = 0) const { MI->addOperand(MachineOperand::CreateMDNode(N, Offset, TargetFlags)); return *this; } @@ -191,7 +191,7 @@ inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB, /// BuildMI - This version of the builder inserts the newly-built /// instruction at the end of the given MachineBasicBlock, and sets up the first -/// operand as a destination virtual register. +/// operand as a destination virtual register. /// inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB, DebugLoc DL, diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h index d5f2e74..bd3fcea 100644 --- a/include/llvm/Support/GraphWriter.h +++ b/include/llvm/Support/GraphWriter.h @@ -45,7 +45,7 @@ namespace GraphProgram { CIRCO }; } - + void DisplayGraph(const sys::Path& Filename, bool wait=true, GraphProgram::Name program = GraphProgram::DOT); template<typename GraphType> @@ -223,9 +223,9 @@ public: O << " -> Node" << DestNodeID; if (DestNodePort >= 0) { if (DOTTraits::hasEdgeDestLabels()) - O << ":d" << DestNodePort; + O << ":d" << DestNodePort; else - O << ":s" << DestNodePort; + O << ":s" << DestNodePort; } if (!Attrs.empty()) |