[llvm-commits] CVS: llvm/lib/VMCore/Function.cpp Instruction.cpp Module.cpp PassManagerT.h SlotCalculator.cpp SymbolTable.cpp iBranch.cpp iCall.cpp iSwitch.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 12 22:43:31 PDT 2003
Changes in directory llvm/lib/VMCore:
Function.cpp updated: 1.52 -> 1.53
Instruction.cpp updated: 1.26 -> 1.27
Module.cpp updated: 1.40 -> 1.41
PassManagerT.h updated: 1.41 -> 1.42
SlotCalculator.cpp updated: 1.27 -> 1.28
SymbolTable.cpp updated: 1.35 -> 1.36
iBranch.cpp updated: 1.7 -> 1.8
iCall.cpp updated: 1.16 -> 1.17
iSwitch.cpp updated: 1.7 -> 1.8
---
Log message:
Regularize header file comments
---
Diffs of the changes: (+9 -9)
Index: llvm/lib/VMCore/Function.cpp
diff -u llvm/lib/VMCore/Function.cpp:1.52 llvm/lib/VMCore/Function.cpp:1.53
--- llvm/lib/VMCore/Function.cpp:1.52 Fri Oct 10 12:54:14 2003
+++ llvm/lib/VMCore/Function.cpp Sun Oct 12 22:32:08 2003
@@ -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.
Index: llvm/lib/VMCore/Instruction.cpp
diff -u llvm/lib/VMCore/Instruction.cpp:1.26 llvm/lib/VMCore/Instruction.cpp:1.27
--- llvm/lib/VMCore/Instruction.cpp:1.26 Fri Oct 10 12:54:14 2003
+++ llvm/lib/VMCore/Instruction.cpp Sun Oct 12 22:32:08 2003
@@ -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.
//
Index: llvm/lib/VMCore/Module.cpp
diff -u llvm/lib/VMCore/Module.cpp:1.40 llvm/lib/VMCore/Module.cpp:1.41
--- llvm/lib/VMCore/Module.cpp:1.40 Fri Oct 10 12:54:14 2003
+++ llvm/lib/VMCore/Module.cpp Sun Oct 12 22:32:08 2003
@@ -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.
//
Index: llvm/lib/VMCore/PassManagerT.h
diff -u llvm/lib/VMCore/PassManagerT.h:1.41 llvm/lib/VMCore/PassManagerT.h:1.42
--- llvm/lib/VMCore/PassManagerT.h:1.41 Thu Aug 14 01:07:55 2003
+++ llvm/lib/VMCore/PassManagerT.h Sun Oct 12 22:32:08 2003
@@ -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
Index: llvm/lib/VMCore/SlotCalculator.cpp
diff -u llvm/lib/VMCore/SlotCalculator.cpp:1.27 llvm/lib/VMCore/SlotCalculator.cpp:1.28
--- llvm/lib/VMCore/SlotCalculator.cpp:1.27 Wed Jul 23 10:30:06 2003
+++ llvm/lib/VMCore/SlotCalculator.cpp Sun Oct 12 22:32:08 2003
@@ -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
Index: llvm/lib/VMCore/SymbolTable.cpp
diff -u llvm/lib/VMCore/SymbolTable.cpp:1.35 llvm/lib/VMCore/SymbolTable.cpp:1.36
--- llvm/lib/VMCore/SymbolTable.cpp:1.35 Fri Oct 3 13:46:24 2003
+++ llvm/lib/VMCore/SymbolTable.cpp Sun Oct 12 22:32:08 2003
@@ -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.
//
Index: llvm/lib/VMCore/iBranch.cpp
diff -u llvm/lib/VMCore/iBranch.cpp:1.7 llvm/lib/VMCore/iBranch.cpp:1.8
--- llvm/lib/VMCore/iBranch.cpp:1.7 Tue Sep 10 18:54:58 2002
+++ llvm/lib/VMCore/iBranch.cpp Sun Oct 12 22:32:08 2003
@@ -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.
Index: llvm/lib/VMCore/iCall.cpp
diff -u llvm/lib/VMCore/iCall.cpp:1.16 llvm/lib/VMCore/iCall.cpp:1.17
--- llvm/lib/VMCore/iCall.cpp:1.16 Fri Jan 31 21:33:22 2003
+++ llvm/lib/VMCore/iCall.cpp Sun Oct 12 22:32:08 2003
@@ -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.
//
Index: llvm/lib/VMCore/iSwitch.cpp
diff -u llvm/lib/VMCore/iSwitch.cpp:1.7 llvm/lib/VMCore/iSwitch.cpp:1.8
--- llvm/lib/VMCore/iSwitch.cpp:1.7 Sat Aug 23 18:14:37 2003
+++ llvm/lib/VMCore/iSwitch.cpp Sun Oct 12 22:32:08 2003
@@ -1,4 +1,4 @@
-//===-- iSwitch.cpp - Implement the Switch instruction -----------*- C++ -*--=//
+//===-- iSwitch.cpp - Implement the Switch instruction --------------------===//
//
// This file implements the Switch instruction...
//
More information about the llvm-commits
mailing list