commit | 10fd03857fe80159c9a82802b17df693b2ea7fe0 | [log] [tgz] |
---|---|---|
author | Alex Lorenz <arphaman@gmail.com> | Thu Aug 06 16:49:30 2015 +0000 |
committer | Alex Lorenz <arphaman@gmail.com> | Thu Aug 06 16:49:30 2015 +0000 |
tree | b179731404d87d1661a413551e76e54e7c4b14fb | |
parent | 6872455c6d9199e9be9bc7f931f82145045e7b2c [diff] [blame] |
MIR Serialization: Serialize the 'non-temporal' machine memory operand flag. llvm-svn: 244228
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index a166dd5..c84cec9 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp
@@ -655,6 +655,8 @@ // TODO: Print operand's other flags. if (Op.isVolatile()) OS << "volatile "; + if (Op.isNonTemporal()) + OS << "non-temporal "; if (Op.isLoad()) OS << "load "; else {