Add support for const thread locals.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74226 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson
2009-06-25 23:31:18 +00:00
parent 7e026b74dd
commit 438d3946af
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -24,8 +24,8 @@ namespace llvm {
public:
ThreadLocalImpl();
virtual ~ThreadLocalImpl();
void setInstance(void* d);
void* getInstance();
void setInstance(const void* d);
const void* getInstance();
};
template<class T>