aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/llc/llc.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index c80e929..1b84d4d 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -280,6 +280,9 @@ int main(int argc, char **argv) {
// Ask the target to add backend passes as necessary.
MachineCodeEmitter *MCE = 0;
+ // Override default to generate verbose assembly.
+ Target.setAsmVerbosityDefault(true);
+
switch (Target.addPassesToEmitFile(Passes, *Out, FileType, Fast)) {
default:
assert(0 && "Invalid file model!");