diff options
author | Owen Anderson <resistor@mac.com> | 2007-11-12 07:39:39 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-11-12 07:39:39 +0000 |
commit | 933b5b7e6274bfb79725e9158ba47fd5d3a7ca47 (patch) | |
tree | 87cde4ffaecafd34e396816649908748be329ddf /llvm/utils/TableGen/CodeGenTarget.cpp | |
parent | be51f28e2b342931c1e61437cf579bc14b690302 (diff) | |
download | bcm5719-llvm-933b5b7e6274bfb79725e9158ba47fd5d3a7ca47.tar.gz bcm5719-llvm-933b5b7e6274bfb79725e9158ba47fd5d3a7ca47.zip |
Add a flag for indirect branch instructions.
Target maintainers: please check that the instructions for your target are correctly marked.
llvm-svn: 44012
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index ea96cf4bd27..4de05b2f83d 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -379,6 +379,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isReturn = R->getValueAsBit("isReturn"); isBranch = R->getValueAsBit("isBranch"); + isIndirectBranch = R->getValueAsBit("isIndirectBranch"); isBarrier = R->getValueAsBit("isBarrier"); isCall = R->getValueAsBit("isCall"); isLoad = R->getValueAsBit("isLoad"); |