commit | 01c1a5ee58a37ac2975615970561d8785252ba6e | [log] [tgz] |
---|---|---|
author | Alex Lorenz <arphaman@gmail.com> | Wed Aug 05 17:49:03 2015 +0000 |
committer | Alex Lorenz <arphaman@gmail.com> | Wed Aug 05 17:49:03 2015 +0000 |
tree | 61ee06135e5da0a77f56e41340fd6506a898772c | |
parent | 3ae0ee545351047f2f31bd34515dfce4978b4d11 [diff] [blame] |
MIR Serialization: Serialize the 'early-clobber' register operand flag. llvm-svn: 244075
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index 2eb5cbf..bba9518 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp
@@ -529,6 +529,8 @@ OS << "killed "; if (Op.isUndef()) OS << "undef "; + if (Op.isEarlyClobber()) + OS << "early-clobber "; if (Op.isDebug()) OS << "debug-use "; printReg(Op.getReg(), OS, TRI);