mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 06:25:18 +00:00
uselistorder: Pull the assembly bit up out of the printer
Pull the `-preserve-ll-uselistorder` bit up through all the callers of `Module::print()`. I converted callers of `operator<<` to `Module::print()` where necessary to pull the bit through. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234968 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -642,8 +642,11 @@ public:
|
||||
/// @{
|
||||
|
||||
/// Print the module to an output stream with an optional
|
||||
/// AssemblyAnnotationWriter.
|
||||
void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const;
|
||||
/// AssemblyAnnotationWriter. If \c ShouldPreserveUseListOrder, then include
|
||||
/// uselistorder directives so that use-lists can be recreated when reading
|
||||
/// the assembly.
|
||||
void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW,
|
||||
bool ShouldPreserveUseListOrder = false) const;
|
||||
|
||||
/// Dump the module to stderr (for debugging).
|
||||
void dump() const;
|
||||
|
Reference in New Issue
Block a user