commit | f805308b197ba190bef81bc97ae963f7ba75aac2 | [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 | 9b741600db1ab399d114224a54e6a4c2ce22aecb [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;