/// 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 {
#ifndef LLVM_LIB_TARGET_X86_INSTPRINTER_X86INSTCOMMENTS_H
#define LLVM_LIB_TARGET_X86_INSTPRINTER_X86INSTCOMMENTS_H
+#include "llvm/CodeGen/MachineInstr.h"
+
namespace llvm {
enum AsmComments {
- AC_EVEX_2_VEX = 0x2 // For instr that was compressed from EVEX to VEX.
+ // For instr that was compressed from EVEX to VEX.
+ AC_EVEX_2_VEX = MachineInstr::TAsmComments
};
class MCInst;