diff options
author | Matthias Braun <matze@braunis.de> | 2018-10-30 23:28:27 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2018-10-30 23:28:27 +0000 |
commit | a83403892ac33484c0a830a21313fdf2473bcd0f (patch) | |
tree | 550dcea73d2af7188357ced4f2e56feddada4562 /llvm/test/CodeGen/X86/machine-cp-debug.mir | |
parent | bdc6deedd3ee87662be96ceef44850cf1c0b47e7 (diff) | |
download | bcm5719-llvm-a83403892ac33484c0a830a21313fdf2473bcd0f.tar.gz bcm5719-llvm-a83403892ac33484c0a830a21313fdf2473bcd0f.zip |
MachineOperand/MIParser: Do not print debug-use flag, infer it
The debug-use flag must be set exactly for uses on DBG_VALUEs. This is
so obvious that it can be trivially inferred while parsing. This will
reduce noise when printing while omitting an information that has little
value to the user.
The parser will keep recognizing the flag for compatibility with old
`.mir` files.
Differential Revision: https://reviews.llvm.org/D53903
llvm-svn: 345671
Diffstat (limited to 'llvm/test/CodeGen/X86/machine-cp-debug.mir')
-rw-r--r-- | llvm/test/CodeGen/X86/machine-cp-debug.mir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/machine-cp-debug.mir b/llvm/test/CodeGen/X86/machine-cp-debug.mir index a7fcd9801e7..a3230e8910c 100644 --- a/llvm/test/CodeGen/X86/machine-cp-debug.mir +++ b/llvm/test/CodeGen/X86/machine-cp-debug.mir @@ -19,5 +19,5 @@ body: | bb.0: liveins: $eax $ebx = COPY $eax - DBG_VALUE debug-use $ebx, debug-use _, !1, !1 + DBG_VALUE $ebx, _, !1, !1 ... |