Remove unused SF_ThreadLocal.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200800 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2014-02-04 22:50:47 +00:00
parent d1cf804de3
commit 19a4033c68
4 changed files with 3 additions and 8 deletions

View File

@ -195,9 +195,8 @@ public:
SF_Global = 1U << 1, // Global symbol
SF_Weak = 1U << 2, // Weak symbol
SF_Absolute = 1U << 3, // Absolute symbol
SF_ThreadLocal = 1U << 4, // Thread local symbol
SF_Common = 1U << 5, // Symbol has common linkage
SF_FormatSpecific = 1U << 31 // Specific to the object file format
SF_Common = 1U << 4, // Symbol has common linkage
SF_FormatSpecific = 1U << 5 // Specific to the object file format
// (e.g. section symbols)
};