forked from OSchip/llvm-project
CodeGen still defaults to non-verbose asm, but llc now overrides it and default to verbose.
llvm-svn: 67669
This commit is contained in:
parent
5e5a63cf8f
commit
499d5f333f
|
@ -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!");
|
||||
|
|
Loading…
Reference in New Issue