summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew V. Tischenko <andrew.v.tischenko@gmail.com>2017-12-14 12:07:11 +0000
committerAndrew V. Tischenko <andrew.v.tischenko@gmail.com>2017-12-14 12:07:11 +0000
commite3c92f3b0d39d055aba25ffa7b2e9d3772f1dfd1 (patch)
tree5cf48838b0ddeb0ee17a1d9b7c81442c3d1c5cee /include
parent87c8e440451c6c0cd3ad31d3dbbc0fff033fc2bd (diff)
Any Target Asm comments should start from MachineInstr::TAsmComments value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@320693 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineInstr.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index cf8f5e5540a..3c1c1bb14f4 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -68,7 +68,9 @@ public:
/// otherwise easily derivable from the IR text.
///
enum CommentFlag {
- ReloadReuse = 0x1 // higher bits are reserved for target dep comments.
+ ReloadReuse = 0x1, // higher bits are reserved for target dep comments.
+ NoSchedComment = 0x2,
+ TAsmComments = 0x4 // Target Asm comments should start from this value.
};
enum MIFlag {