diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-07-13 03:36:05 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-07-13 03:36:05 +0000 |
commit | f12c28d0089383cb21bef94015b7e65faa5919f2 (patch) | |
tree | 49db71c84bf8c5668bc8890c52862a65d2f0c734 /llvm/utils | |
parent | a7b6c973e5fb5852bf31d394290f4cc5c80d40ae (diff) | |
download | bcm5719-llvm-f12c28d0089383cb21bef94015b7e65faa5919f2.tar.gz bcm5719-llvm-f12c28d0089383cb21bef94015b7e65faa5919f2.zip |
vim: add local_unnamed_addr keyword
The `local_unnamed_addr` was introduced in SVN r272709. Update the syntax
highlighting rules.
llvm-svn: 275245
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/vim/syntax/llvm.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/utils/vim/syntax/llvm.vim b/llvm/utils/vim/syntax/llvm.vim index a9c12e2ed50..bb38c764039 100644 --- a/llvm/utils/vim/syntax/llvm.vim +++ b/llvm/utils/vim/syntax/llvm.vim @@ -45,12 +45,12 @@ syn keyword llvmKeyword distinct dllexport dllimport except extern_weak external syn keyword llvmKeyword externally_initialized fastcc filter gc global hhvmcc syn keyword llvmKeyword hhvm_ccc hidden initialexec inlinehint inreg syn keyword llvmKeyword intel_ocl_bicc inteldialect internal linkonce -syn keyword llvmKeyword linkonce_odr localdynamic localexec minsize module -syn keyword llvmKeyword monotonic msp430_intrcc musttail naked nest -syn keyword llvmKeyword noalias nocapture noimplicitfloat noinline nonlazybind -syn keyword llvmKeyword noredzone noreturn nounwind optnone optsize personality -syn keyword llvmKeyword private protected ptx_device ptx_kernel readnone -syn keyword llvmKeyword readonly release returns_twice sanitize_thread +syn keyword llvmKeyword linkonce_odr local_unnamed_addr localdynamic localexec +syn keyword llvmKeyword minsize module monotonic msp430_intrcc musttail naked +syn keyword llvmKeyword nest noalias nocapture noimplicitfloat noinline +syn keyword llvmKeyword nonlazybind noredzone noreturn nounwind optnone optsize +syn keyword llvmKeyword personality private protected ptx_device ptx_kernel +syn keyword llvmKeyword readnone readonly release returns_twice sanitize_thread syn keyword llvmKeyword sanitize_memory section seq_cst sideeffect signext syn keyword llvmKeyword singlethread source_filename spir_func spir_kernel sret syn keyword llvmKeyword ssp sspreq sspstrong swiftcc tail target thread_local to |