diff options
author | Nick Kledzik <kledzik@apple.com> | 2013-09-04 23:27:21 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2013-09-04 23:27:21 +0000 |
commit | 5b34493843fee70dd0aba300466da2b020676d65 (patch) | |
tree | 2ba89a80daf32a3e707f45806cd15ec38b8a62c5 /include | |
parent | 19f066e0e0bebd142ef9e8d50d8232a1d1c117de (diff) | |
download | external_llvm-5b34493843fee70dd0aba300466da2b020676d65.zip external_llvm-5b34493843fee70dd0aba300466da2b020676d65.tar.gz external_llvm-5b34493843fee70dd0aba300466da2b020676d65.tar.bz2 |
fix typo in enum name
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/MachO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/MachO.h b/include/llvm/Support/MachO.h index cc9651b..9d401c8 100644 --- a/include/llvm/Support/MachO.h +++ b/include/llvm/Support/MachO.h @@ -169,7 +169,7 @@ namespace llvm { S_THREAD_LOCAL_REGULAR = 0x11u, S_THREAD_LOCAL_ZEROFILL = 0x12u, S_THREAD_LOCAL_VARIABLES = 0x13u, - S_THREAD_LOCA_VARIABLE_POINTERS = 0x14u, + S_THREAD_LOCAL_VARIABLE_POINTERS = 0x14u, S_THREAD_LOCAL_INIT_FUNCTION_POINTERS = 0x15u }; |