Index: lib/Target/ARM/ARMSubtarget.h |
=================================================================== |
--- lib/Target/ARM/ARMSubtarget.h (revision 78188) |
+++ lib/Target/ARM/ARMSubtarget.h (working copy) |
@@ -54,6 +54,9 @@ |
/// IsR9Reserved - True if R9 is a not available as general purpose register. |
bool IsR9Reserved; |
+ /// UseInlineJumpTables - True if jump tables should be in-line in the code. |
+ bool UseInlineJumpTables; |
+ |
/// stackAlignment - The minimum alignment known to hold of the stack frame on |
/// entry to the function and which must be maintained by every function. |
unsigned stackAlignment; |
@@ -116,6 +119,7 @@ |
bool hasThumb2() const { return ThumbMode >= Thumb2; } |
bool isR9Reserved() const { return IsR9Reserved; } |
+ bool useInlineJumpTables() const { return UseInlineJumpTables; } |
const std::string & getCPUString() const { return CPUString; } |