diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
commit | cf3056db0fee1db7921214b1f25cea04e959e105 (patch) | |
tree | 0d3986942f0be9fba36271f39cf3df5b85c02a67 /lib/VMCore | |
parent | c00d23a727f143bdd24f29d529ebc2cc3230bef8 (diff) |
Regularize header file comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Function.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/Instruction.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/Module.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/PassManagerT.h | 2 | ||||
-rw-r--r-- | lib/VMCore/SlotCalculator.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/SymbolTable.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/iBranch.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/iCall.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/iSwitch.cpp | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index e9ae634710..d31a69e49a 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -1,4 +1,4 @@ -//===-- Function.cpp - Implement the Global object classes -------*- C++ -*--=// +//===-- Function.cpp - Implement the Global object classes ----------------===// // // This file implements the Function & GlobalVariable classes for the VMCore // library. diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index a2d0ba9174..e5e6501bd3 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -1,4 +1,4 @@ -//===-- Instruction.cpp - Implement the Instruction class --------*- C++ -*--=// +//===-- Instruction.cpp - Implement the Instruction class -----------------===// // // This file implements the Instruction class for the VMCore library. // diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp index 80460df4d8..77b17674d1 100644 --- a/lib/VMCore/Module.cpp +++ b/lib/VMCore/Module.cpp @@ -1,4 +1,4 @@ -//===-- Module.cpp - Implement the Module class ------------------*- C++ -*--=// +//===-- Module.cpp - Implement the Module class ---------------------------===// // // This file implements the Module class for the VMCore library. // diff --git a/lib/VMCore/PassManagerT.h b/lib/VMCore/PassManagerT.h index 9f47665b53..370aa4c42e 100644 --- a/lib/VMCore/PassManagerT.h +++ b/lib/VMCore/PassManagerT.h @@ -1,4 +1,4 @@ -//===- PassManagerT.h - Container for Passes ---------------------*- C++ -*--=// +//===- PassManagerT.h - Container for Passes ------------------------------===// // // This file defines the PassManagerT class. This class is used to hold, // maintain, and optimize execution of Pass's. The PassManager class ensures diff --git a/lib/VMCore/SlotCalculator.cpp b/lib/VMCore/SlotCalculator.cpp index 005c5c1658..47191ce72b 100644 --- a/lib/VMCore/SlotCalculator.cpp +++ b/lib/VMCore/SlotCalculator.cpp @@ -1,4 +1,4 @@ -//===-- SlotCalculator.cpp - Calculate what slots values land in ------------=// +//===-- SlotCalculator.cpp - Calculate what slots values land in ----------===// // // This file implements a useful analysis step to figure out what numbered // slots values in a program will land in (keeping track of per plane diff --git a/lib/VMCore/SymbolTable.cpp b/lib/VMCore/SymbolTable.cpp index 9def6cb512..6812f699d5 100644 --- a/lib/VMCore/SymbolTable.cpp +++ b/lib/VMCore/SymbolTable.cpp @@ -1,4 +1,4 @@ -//===-- SymbolTable.cpp - Implement the SymbolTable class -------------------=// +//===-- SymbolTable.cpp - Implement the SymbolTable class -----------------===// // // This file implements the SymbolTable class for the VMCore library. // diff --git a/lib/VMCore/iBranch.cpp b/lib/VMCore/iBranch.cpp index 3ad36d13ee..a6032ab0fe 100644 --- a/lib/VMCore/iBranch.cpp +++ b/lib/VMCore/iBranch.cpp @@ -1,4 +1,4 @@ -//===-- iBranch.cpp - Implement the Branch instruction -----------*- C++ -*--=// +//===-- iBranch.cpp - Implement the Branch instruction --------------------===// // // This file implements the 'br' instruction, which can represent either a // conditional or unconditional branch. diff --git a/lib/VMCore/iCall.cpp b/lib/VMCore/iCall.cpp index 9144014b76..823def6911 100644 --- a/lib/VMCore/iCall.cpp +++ b/lib/VMCore/iCall.cpp @@ -1,4 +1,4 @@ -//===-- iCall.cpp - Implement the call & invoke instructions -----*- C++ -*--=// +//===-- iCall.cpp - Implement the call & invoke instructions --------------===// // // This file implements the call and invoke instructions. // diff --git a/lib/VMCore/iSwitch.cpp b/lib/VMCore/iSwitch.cpp index e1cb00e3ad..0ffe45ff92 100644 --- a/lib/VMCore/iSwitch.cpp +++ b/lib/VMCore/iSwitch.cpp @@ -1,4 +1,4 @@ -//===-- iSwitch.cpp - Implement the Switch instruction -----------*- C++ -*--=// +//===-- iSwitch.cpp - Implement the Switch instruction --------------------===// // // This file implements the Switch instruction... // |