X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=lib%2FIR%2FAsmWriter.cpp;h=2f8a3406a373c7863a699028697b0ddb4a6d6aaa;hp=db757508594a2bcfdda37ef5c273b89caa0af220;hb=c35973bfb04731fa91591044d6d2408099dcccd3;hpb=6bd362c2d9d3e3284708ba5e55d8f3ccf7493313 diff --git a/lib/IR/AsmWriter.cpp b/lib/IR/AsmWriter.cpp index db757508594..2f8a3406a37 100644 --- a/lib/IR/AsmWriter.cpp +++ b/lib/IR/AsmWriter.cpp @@ -2768,6 +2768,8 @@ void AssemblyWriter::printInstruction(const Instruction &I) { Out << "musttail "; else if (CI->isTailCall()) Out << "tail "; + else if (CI->isNoTailCall()) + Out << "notail "; } // Print out the opcode...