diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-15 02:12:41 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-15 02:12:41 +0000 |
commit | c4f0a325a7a1dde8780a740bca06705df3d7f58e (patch) | |
tree | 1542ebdb0ccae60ad9dabd78806c87f85f69ee5f /llvm/tools/llvm-dis | |
parent | 89010d8356507e5ed6cf6d67d8327530d01499ff (diff) | |
download | bcm5719-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/tools/llvm-dis')
-rw-r--r-- | llvm/tools/llvm-dis/llvm-dis.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/llvm-dis/llvm-dis.cpp b/llvm/tools/llvm-dis/llvm-dis.cpp index f914df54cf3..106fc18ebf5 100644 --- a/llvm/tools/llvm-dis/llvm-dis.cpp +++ b/llvm/tools/llvm-dis/llvm-dis.cpp @@ -25,6 +25,7 @@ #include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/Module.h" #include "llvm/IR/Type.h" +#include "llvm/IR/UseListOrder.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/DataStream.h" #include "llvm/Support/FileSystem.h" @@ -189,7 +190,7 @@ int main(int argc, char **argv) { // All that llvm-dis does is write the assembly to a file. if (!DontPrint) - M->print(Out->os(), Annotator.get()); + M->print(Out->os(), Annotator.get(), shouldPreserveAssemblyUseListOrder()); // Declare success. Out->keep(); |