summaryrefslogtreecommitdiffstats
path: root/llvm/lib/IR/AsmWriter.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-04-15 02:12:41 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-04-15 02:12:41 +0000
commitc4f0a325a7a1dde8780a740bca06705df3d7f58e (patch)
tree1542ebdb0ccae60ad9dabd78806c87f85f69ee5f /llvm/lib/IR/AsmWriter.cpp
parent89010d8356507e5ed6cf6d67d8327530d01499ff (diff)
downloadbcm5719-llvm-c4f0a325a7a1dde8780a740bca06705df3d7f58e.tar.gz
bcm5719-llvm-c4f0a325a7a1dde8780a740bca06705df3d7f58e.zip
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. llvm-svn: 234968
Diffstat (limited to 'llvm/lib/IR/AsmWriter.cpp')
-rw-r--r--llvm/lib/IR/AsmWriter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/IR/AsmWriter.cpp b/llvm/lib/IR/AsmWriter.cpp
index 6f4d99767d0..a2eb545f8b1 100644
--- a/llvm/lib/IR/AsmWriter.cpp
+++ b/llvm/lib/IR/AsmWriter.cpp
@@ -3071,11 +3071,11 @@ void Function::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
W.printFunction(this);
}
-void Module::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
+void Module::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW,
+ bool ShouldPreserveUseListOrder) const {
SlotTracker SlotTable(this);
formatted_raw_ostream OS(ROS);
- AssemblyWriter W(OS, SlotTable, this, AAW,
- shouldPreserveAssemblyUseListOrder());
+ AssemblyWriter W(OS, SlotTable, this, AAW, ShouldPreserveUseListOrder);
W.printModule(this);
}
OpenPOWER on IntegriCloud