mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
* Convert tabs to spaces
* Order #includes according to style guide * Remove extraneous blank lines git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17639 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
669b524399
commit
710d1ce4f0
@ -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
|
||||
|
||||
@ -71,7 +70,6 @@ AnnotationID AnnotationManager::getID(const std::string &Name, Factory Fact,
|
||||
return Result;
|
||||
}
|
||||
|
||||
|
||||
// getName - This function is especially slow, but that's okay because it should
|
||||
// only be used for debugging.
|
||||
//
|
||||
@ -83,13 +81,11 @@ 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 AnnotationManager::registerAnnotationFactory(AnnotationID ID, AnnFactory F,
|
||||
void *ExtraData) {
|
||||
if (F)
|
||||
getFactMap()[ID.ID] = std::make_pair(F, ExtraData);
|
||||
|
Loading…
Reference in New Issue
Block a user