diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-30 18:37:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-30 18:37:50 +0000 |
commit | 48486893f46d2e12e926682a3ecb908716bc66c4 (patch) | |
tree | 1b9df5ccb8bd8eb836403dc9c1b3b42707c2d07d /include/llvm/Support | |
parent | f4744498042cc69627b3a0b40fe80d3967179ea4 (diff) | |
download | external_llvm-48486893f46d2e12e926682a3ecb908716bc66c4.tar.gz external_llvm-48486893f46d2e12e926682a3ecb908716bc66c4.tar.bz2 external_llvm-48486893f46d2e12e926682a3ecb908716bc66c4.zip |
Standardize header file comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/CFG.h | 6 | ||||
-rw-r--r-- | include/llvm/Support/Casting.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/CommandLine.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/DOTGraphTraits.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/GraphWriter.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/InstIterator.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/InstVisitor.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/Linker.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/Mangler.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/MathExtras.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/SystemUtils.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/TypeInfo.h | 2 |
12 files changed, 14 insertions, 14 deletions
diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index 6a3abd9260..2d67c026eb 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -1,12 +1,12 @@ -//===-- llvm/Support/CFG.h - Process LLVM structures as graphs ---*- C++ -*--=// +//===-- llvm/Support/CFG.h - Process LLVM structures as graphs --*- C++ -*-===// // // This file defines specializations of GraphTraits that allow Function and // BasicBlock graphs to be treated as proper graphs for generic algorithms. // //===----------------------------------------------------------------------===// -#ifndef LLVM_CFG_H -#define LLVM_CFG_H +#ifndef LLVM_SUPPORT_CFG_H +#define LLVM_SUPPORT_CFG_H #include "Support/GraphTraits.h" #include "llvm/Function.h" diff --git a/include/llvm/Support/Casting.h b/include/llvm/Support/Casting.h index 2815ecde71..fc2d4b21ea 100644 --- a/include/llvm/Support/Casting.h +++ b/include/llvm/Support/Casting.h @@ -1,4 +1,4 @@ -//===-- Support/Casting.h - Allow flexible, checked, casts -------*- C++ -*--=// +//===-- Support/Casting.h - Allow flexible, checked, casts ------*- C++ -*-===// // // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(), // and dyn_cast_or_null<X>() templates. diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index 789679e399..179bca378b 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -1,4 +1,4 @@ -//===- Support/CommandLine.h - Flexible Command line parser ------*- C++ -*--=// +//===- Support/CommandLine.h - Flexible Command line parser -----*- C++ -*-===// // // This class implements a command line argument processor that is useful when // creating a tool. It provides a simple, minimalistic interface that is easily diff --git a/include/llvm/Support/DOTGraphTraits.h b/include/llvm/Support/DOTGraphTraits.h index 2371b66407..6ffade878b 100644 --- a/include/llvm/Support/DOTGraphTraits.h +++ b/include/llvm/Support/DOTGraphTraits.h @@ -1,4 +1,4 @@ -//===-- Support/DotGraphTraits.h - Customize .dot output -------*- C++ -*--===// +//===-- Support/DotGraphTraits.h - Customize .dot output --------*- C++ -*-===// // // This file defines a template class that can be used to customize dot output // graphs generated by the GraphWriter.h file. The default implementation of diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h index 3b7b357554..7b21dbf30f 100644 --- a/include/llvm/Support/GraphWriter.h +++ b/include/llvm/Support/GraphWriter.h @@ -1,4 +1,4 @@ -//===-- Support/GraphWriter.h - Write a graph to a .dot file ---*- C++ -*--===// +//===-- Support/GraphWriter.h - Write a graph to a .dot file ----*- C++ -*-===// // // This file defines a simple interface that can be used to print out generic // LLVM graphs to ".dot" files. "dot" is a tool that is part of the AT&T diff --git a/include/llvm/Support/InstIterator.h b/include/llvm/Support/InstIterator.h index 06fc9bd281..1f6862ba91 100644 --- a/include/llvm/Support/InstIterator.h +++ b/include/llvm/Support/InstIterator.h @@ -1,4 +1,4 @@ -//===-- llvm/Support/InstIterator.h - Classes for inst iteration -*- C++ -*--=// +//===- llvm/Support/InstIterator.h - Classes for inst iteration -*- C++ -*-===// // // This file contains definitions of two iterators for iterating over the // instructions in a function. This is effectively a wrapper around a two level diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h index 758cc99064..9934522f45 100644 --- a/include/llvm/Support/InstVisitor.h +++ b/include/llvm/Support/InstVisitor.h @@ -1,4 +1,4 @@ -//===- llvm/Support/InstVisitor.h - Define instruction visitors --*- C++ -*--=// +//===- llvm/Support/InstVisitor.h - Define instruction visitors -*- C++ -*-===// // // This template class is used to define instruction visitors in a typesafe // manner without having to use lots of casts and a big switch statement (in diff --git a/include/llvm/Support/Linker.h b/include/llvm/Support/Linker.h index dac0f9b90e..f40cce3dcd 100644 --- a/include/llvm/Support/Linker.h +++ b/include/llvm/Support/Linker.h @@ -1,4 +1,4 @@ -//===- llvm/Transforms/Utils/Linker.h - Module Linker Interface --*- C++ -*--=// +//===- llvm/Transforms/Utils/Linker.h - Module Linker Interface -*- C++ -*-===// // // This file defines the interface to the module linker. // diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h index 15ec2f49fc..7e44827a47 100644 --- a/include/llvm/Support/Mangler.h +++ b/include/llvm/Support/Mangler.h @@ -1,4 +1,4 @@ -//===-- Mangler.h - Self-contained c/asm llvm name mangler -*- C++ -*- ----===// +//===-- Mangler.h - Self-contained c/asm llvm name mangler ------*- C++ -*-===// // // Unified name mangler for CWriter and assembly backends. // diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h index bfb88552bf..ea3bba40c9 100644 --- a/include/llvm/Support/MathExtras.h +++ b/include/llvm/Support/MathExtras.h @@ -1,4 +1,4 @@ -//===-- Support/MathExtras.h - Useful math functions -------------*- C++ -*--=// +//===-- Support/MathExtras.h - Useful math functions ------------*- C++ -*-===// // // This file contains some functions that are useful for math stuff. // diff --git a/include/llvm/Support/SystemUtils.h b/include/llvm/Support/SystemUtils.h index 26371c93dc..01c8189723 100644 --- a/include/llvm/Support/SystemUtils.h +++ b/include/llvm/Support/SystemUtils.h @@ -1,4 +1,4 @@ -//===- SystemUtils.h - Utilities to do low-level system stuff --*- C++ -*--===// +//===- SystemUtils.h - Utilities to do low-level system stuff ---*- C++ -*-===// // // This file contains functions used to do a variety of low-level, often // system-specific, tasks. diff --git a/include/llvm/Support/TypeInfo.h b/include/llvm/Support/TypeInfo.h index 9884f65e69..488f56dc0f 100644 --- a/include/llvm/Support/TypeInfo.h +++ b/include/llvm/Support/TypeInfo.h @@ -1,4 +1,4 @@ -//===- Support/TypeInfo.h - Support class for type_info objects --*- C++ -*--=// +//===- Support/TypeInfo.h - Support class for type_info objects -*- C++ -*-===// // // This class makes std::type_info objects behave like first class objects that // can be put in maps and hashtables. This code is based off of code in the |