diff options
Diffstat (limited to 'include/llvm/Bytecode')
-rw-r--r-- | include/llvm/Bytecode/BytecodeHandler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Bytecode/BytecodeHandler.h b/include/llvm/Bytecode/BytecodeHandler.h index eeae2a58d6..3d885e123f 100644 --- a/include/llvm/Bytecode/BytecodeHandler.h +++ b/include/llvm/Bytecode/BytecodeHandler.h @@ -112,7 +112,8 @@ public: GlobalValue::LinkageTypes,///< The linkage type of the GV GlobalValue::VisibilityTypes,///< The visibility style of the GV unsigned SlotNum, ///< Slot number of GV - unsigned initSlot ///< Slot number of GV's initializer (0 if none) + unsigned initSlot, ///< Slot number of GV's initializer (0 if none) + bool isThreadLocal ///< Whether the GV is thread local or not ) {} /// This method is called when a type list is recognized. It simply |