Remove dead code.

llvm-svn: 82999
This commit is contained in:
Devang Patel 2009-09-28 18:31:56 +00:00
parent e185b4dd82
commit 59c0c1388f
1 changed files with 1 additions and 5 deletions

View File

@ -1267,15 +1267,11 @@ class AssemblyWriter {
AssemblyAnnotationWriter *AnnotationWriter;
std::vector<const Type*> NumberedTypes;
// Each MDNode is assigned unique MetadataIDNo.
std::map<const MDNode *, unsigned> MDNodes;
unsigned MetadataIDNo;
public:
inline AssemblyWriter(formatted_raw_ostream &o, SlotTracker &Mac,
const Module *M,
AssemblyAnnotationWriter *AAW)
: Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW), MetadataIDNo(0) {
: Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
AddModuleTypesToPrinter(TypePrinter, NumberedTypes, M);
}