diff options
author | Chris Lattner <sabre@nondot.org> | 2006-11-06 21:44:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-11-06 21:44:54 +0000 |
commit | a818e92f8b7ac805c0c7a9747d427186048b1440 (patch) | |
tree | fb21007be354504dce0be63a4fa868bd6f335502 /utils/TableGen/InstrInfoEmitter.cpp | |
parent | 1b1b737d7dc7b3330331cf65514719d719f88a43 (diff) | |
download | external_llvm-a818e92f8b7ac805c0c7a9747d427186048b1440.zip external_llvm-a818e92f8b7ac805c0c7a9747d427186048b1440.tar.gz external_llvm-a818e92f8b7ac805c0c7a9747d427186048b1440.tar.bz2 |
recognize ppc's blr instruction as predicated
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31480 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 bf69d08..41fb696 100644 --- a/utils/TableGen/InstrInfoEmitter.cpp +++ b/utils/TableGen/InstrInfoEmitter.cpp @@ -225,6 +225,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num, if (Inst.isLoad) OS << "|M_LOAD_FLAG"; if (Inst.isStore || isStore) OS << "|M_STORE_FLAG"; if (Inst.isTwoAddress) OS << "|M_2_ADDR_FLAG"; + if (Inst.isPredicated) OS << "|M_PREDICATED"; if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR"; if (Inst.isCommutable) OS << "|M_COMMUTABLE"; if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG"; |