diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-07-31 02:07:26 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-07-31 02:07:26 +0000 |
| commit | 58505994cfad64d89c7b3825341396faa10e6ea1 (patch) | |
| tree | 0d1631d94fecb91bb4577a4e40ddf311e2c1b44b /utils/TableGen/InstrInfoEmitter.cpp | |
| parent | 2a809f6567bb414a7a376a1c9d4bcd194477fc04 (diff) | |
Support new flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
| -rw-r--r-- | utils/TableGen/InstrInfoEmitter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp index ed040b15d9..6f9440a607 100644 --- a/utils/TableGen/InstrInfoEmitter.cpp +++ b/utils/TableGen/InstrInfoEmitter.cpp @@ -107,6 +107,7 @@ void InstrInfoEmitter::emitRecord(Record *R, unsigned Num, Record *InstrInfo, // Emit all of the target indepedent flags... if (R->getValueAsBit("isReturn")) OS << "|M_RET_FLAG"; if (R->getValueAsBit("isBranch")) OS << "|M_BRANCH_FLAG"; + if (R->getValueAsBit("isBarrier")) OS << "|M_BARRIER_FLAG"; if (R->getValueAsBit("isCall" )) OS << "|M_CALL_FLAG"; if (R->getValueAsBit("isTwoAddress")) OS << "|M_2_ADDR_FLAG"; if (R->getValueAsBit("isTerminator")) OS << "|M_TERMINATOR_FLAG"; |
