diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-11-09 04:27:19 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-11-09 04:27:19 +0000 |
commit | 3e5dd6d34c651db1b5194803b80e9e62b3d0b809 (patch) | |
tree | 22025ea1f71bd2b6dac30b696ce0dfcebd90ef47 /llvm/lib | |
parent | 8d5c13c3e328595b6fb9640d93c1c503c2a5c2f8 (diff) | |
download | bcm5719-llvm-3e5dd6d34c651db1b5194803b80e9e62b3d0b809.tar.gz bcm5719-llvm-3e5dd6d34c651db1b5194803b80e9e62b3d0b809.zip |
* Convert tabs to spaces
* Order #includes according to style guide
* Remove extraneous blank lines
llvm-svn: 17639
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/Annotation.cpp | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/llvm/lib/Support/Annotation.cpp b/llvm/lib/Support/Annotation.cpp index c8cf8298b40..d35904e9b89 100644 --- a/llvm/lib/Support/Annotation.cpp +++ b/llvm/lib/Support/Annotation.cpp @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#include <map> #include "llvm/Support/Annotation.h" +#include <map> using namespace llvm; Annotation::~Annotation() {} // Designed to be subclassed @@ -26,7 +26,6 @@ Annotable::~Annotable() { // Virtual because it's designed to be subclassed... } } - typedef std::map<const std::string, unsigned> IDMapType; static unsigned IDCounter = 0; // Unique ID counter @@ -65,13 +64,12 @@ AnnotationID AnnotationManager::getID(const std::string &Name) { // Name -> ID // getID - Name -> ID + registration of a factory function for demand driven // annotation support. AnnotationID AnnotationManager::getID(const std::string &Name, Factory Fact, - void *Data) { + void *Data) { AnnotationID Result(getID(Name)); registerAnnotationFactory(Result, Fact, Data); - return Result; + return Result; } - // getName - This function is especially slow, but that's okay because it should // only be used for debugging. // @@ -83,14 +81,12 @@ const std::string &AnnotationManager::getName(AnnotationID ID) { // ID -> Name } } - // registerAnnotationFactory - This method is used to register a callback // function used to create an annotation on demand if it is needed by the // Annotable::findOrCreateAnnotation method. // -void AnnotationManager::registerAnnotationFactory(AnnotationID ID, - AnnFactory F, - void *ExtraData) { +void AnnotationManager::registerAnnotationFactory(AnnotationID ID, AnnFactory F, + void *ExtraData) { if (F) getFactMap()[ID.ID] = std::make_pair(F, ExtraData); else @@ -101,7 +97,7 @@ void AnnotationManager::registerAnnotationFactory(AnnotationID ID, // specified object, using a register annotation creation function. // Annotation *AnnotationManager::createAnnotation(AnnotationID ID, - const Annotable *Obj) { + const Annotable *Obj) { FactMapType::iterator I = getFactMap().find(ID.ID); if (I == getFactMap().end()) return 0; return I->second.first(ID, Obj, I->second.second); |