X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FCodeGen%2FMIRPrinter.cpp;h=aa3031657cd59c74bf28c7ad4a05795623aeffeb;hb=971d8c0000df786607bfbd9e73c8f5cd3eb9ba2f;hp=6be8205f65e05e523d0ff1627a0a1e5ddbf7eef4;hpb=ed8c969d30e67daa180e97662dd8e9ca92a1818b;p=oota-llvm.git diff --git a/lib/CodeGen/MIRPrinter.cpp b/lib/CodeGen/MIRPrinter.cpp index 6be8205f65e..aa3031657cd 100644 --- a/lib/CodeGen/MIRPrinter.cpp +++ b/lib/CodeGen/MIRPrinter.cpp @@ -786,7 +786,10 @@ void MIPrinter::print(const MachineMemOperand &Op) { OS << ", !alias.scope "; AAInfo.Scope->printAsOperand(OS, MST); } - // TODO: Print AA NoAlias metadata. + if (AAInfo.NoAlias) { + OS << ", !noalias "; + AAInfo.NoAlias->printAsOperand(OS, MST); + } // TODO: Print the ranges metadata. OS << ')'; }