commit | 20ab29068d8a8ec31f26f022634f1e0bc4b1da56 | [log] [tgz] |
---|---|---|
author | Owen Anderson <resistor@mac.com> | Mon Nov 12 07:39:39 2007 +0000 |
committer | Owen Anderson <resistor@mac.com> | Mon Nov 12 07:39:39 2007 +0000 |
tree | 075ab2b15d357226cd3cefa2ca5c9540bdeb3dc8 | |
parent | f2fbca68f868122d6df0bfc9952b4e4c3dfb60b7 [diff] [blame] |
Add a flag for indirect branch instructions. Target maintainers: please check that the instructions for your target are correctly marked. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44012 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h index 6abe972..245b38e 100644 --- a/utils/TableGen/CodeGenInstruction.h +++ b/utils/TableGen/CodeGenInstruction.h
@@ -87,6 +87,7 @@ // Various boolean values we track for the instruction. bool isReturn; bool isBranch; + bool isIndirectBranch; bool isBarrier; bool isCall; bool isLoad;