diff options
author | Richard Osborne <richard@xmos.com> | 2010-03-11 14:58:16 +0000 |
---|---|---|
committer | Richard Osborne <richard@xmos.com> | 2010-03-11 14:58:16 +0000 |
commit | 95da605e15a6f108b551ecc6772823ea53de3007 (patch) | |
tree | 5e758211638e7c7e2f05c0017ede940e8e3c82a1 /include/llvm/CodeGen/MachineJumpTableInfo.h | |
parent | 826cbac2a0cef418fd8949813761c2ed975f3df1 (diff) |
Add a new jump table encoding to indicate jump tables entries
are inside the function by the target at the point of use.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98255 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineJumpTableInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineJumpTableInfo.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineJumpTableInfo.h b/include/llvm/CodeGen/MachineJumpTableInfo.h index 5a4c9a9fb7..b8d04bf213 100644 --- a/include/llvm/CodeGen/MachineJumpTableInfo.h +++ b/include/llvm/CodeGen/MachineJumpTableInfo.h @@ -61,7 +61,11 @@ public: /// .set L4_5_set_123, LBB123 - LJTI1_2 /// .word L4_5_set_123 EK_LabelDifference32, - + + /// EK_Inline - Jump table entries are emitted inline at their point of + /// use. It is the responsibility of the target to emit the entries. + EK_Inline, + /// EK_Custom32 - Each entry is a 32-bit value that is custom lowered by the /// TargetLowering::LowerCustomJumpTableEntry hook. EK_Custom32 |