mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
stop forcing a noop AssemblyAnnotationWriter to silence #uses
comments, these don't happen anymore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112901 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a660be7587
commit
831c8ec016
@ -21,7 +21,6 @@
|
||||
#include "llvm/Analysis/Dominators.h"
|
||||
#include "llvm/Analysis/LoopPass.h"
|
||||
#include "llvm/Analysis/ScalarEvolutionExpressions.h"
|
||||
#include "llvm/Assembly/AsmAnnotationWriter.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
@ -179,9 +178,6 @@ void IVUsers::print(raw_ostream &OS, const Module *M) const {
|
||||
}
|
||||
OS << ":\n";
|
||||
|
||||
// Use a default AssemblyAnnotationWriter to suppress the default info
|
||||
// comments, which aren't relevant here.
|
||||
AssemblyAnnotationWriter Annotator;
|
||||
for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(),
|
||||
E = IVUses.end(); UI != E; ++UI) {
|
||||
OS << " ";
|
||||
@ -195,7 +191,7 @@ void IVUsers::print(raw_ostream &OS, const Module *M) const {
|
||||
OS << ")";
|
||||
}
|
||||
OS << " in ";
|
||||
UI->getUser()->print(OS, &Annotator);
|
||||
UI->getUser()->print(OS);
|
||||
OS << '\n';
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user