summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Annotation.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:48:15 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:48:15 +0000
commit63b3afa98460ce38a1c48d3c44ef6edfdaf37b77 (patch)
treec0f475480b9d884ebcd5fce42a6dac1a4ad1831e /include/llvm/Support/Annotation.h
parent14f342978cbd07436388eb7046bca96ada24cb63 (diff)
downloadllvm-63b3afa98460ce38a1c48d3c44ef6edfdaf37b77.tar.gz
llvm-63b3afa98460ce38a1c48d3c44ef6edfdaf37b77.tar.bz2
llvm-63b3afa98460ce38a1c48d3c44ef6edfdaf37b77.tar.xz
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Annotation.h')
-rw-r--r--include/llvm/Support/Annotation.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/Support/Annotation.h b/include/llvm/Support/Annotation.h
index 2331ca5a23..1b0d048fb6 100644
--- a/include/llvm/Support/Annotation.h
+++ b/include/llvm/Support/Annotation.h
@@ -1,10 +1,10 @@
//===-- llvm/Support/Annotation.h - Annotation classes ----------*- C++ -*-===//
-//
+//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
// This file contains the declarations for two classes: Annotation & Annotable.
@@ -81,7 +81,7 @@ public:
//===----------------------------------------------------------------------===//
//
// Annotable - This class is used as a base class for all objects that would
-// like to have annotation capability. One notable subclass is Value, which
+// like to have annotation capability. One notable subclass is Value, which
// means annotations can be attached to almost everything in LLVM.
//
// Annotable objects keep their annotation list sorted as annotations are
@@ -157,13 +157,13 @@ public:
// one-to-one mapping between string Annotation names and Annotation ID numbers.
//
// Compared to the rest of the Annotation system, these mapping methods are
-// relatively slow, so they should be avoided by locally caching Annotation
+// relatively slow, so they should be avoided by locally caching Annotation
// ID #'s. These methods are safe to call at any time, even by static ctors, so
// they should be used by static ctors most of the time.
//
// This class also provides support for annotations that are created on demand
// by the Annotable::getOrCreateAnnotation method. To get this to work, simply
-// register an annotation handler
+// register an annotation handler
//
struct AnnotationManager {
typedef Annotation *(*Factory)(AnnotationID, const Annotable *, void*);
@@ -183,7 +183,7 @@ struct AnnotationManager {
// Annotation creation on demand support...
// registerAnnotationFactory - This method is used to register a callback
- // function used to create an annotation on demand if it is needed by the
+ // function used to create an annotation on demand if it is needed by the
// Annotable::getOrCreateAnnotation method.
//
static void registerAnnotationFactory(AnnotationID ID, Factory Func,