mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-09 13:21:30 +00:00
vim: separate the keywords into one per line
This achieves the same result as previously by using line wrapping. This allows us to have one keyword per line which makes adding a new keyword significantly easier, especially if they are inserted in a lexicographical sort order as you no longer need to reflow the content around it. This only does the keywords as that is the group which changes more often. llvm-svn: 275248
This commit is contained in:
parent
45c3eb2c5a
commit
a7b7b3ed35
@ -36,28 +36,122 @@ syn keyword llvmStatement umax umin une uno unreachable unwind urem va_arg
|
|||||||
syn keyword llvmStatement xchg xor zext
|
syn keyword llvmStatement xchg xor zext
|
||||||
|
|
||||||
" Keywords.
|
" Keywords.
|
||||||
syn keyword llvmKeyword acq_rel acquire sanitize_address addrspace alias align
|
syn keyword llvmKeyword
|
||||||
syn keyword llvmKeyword alignstack alwaysinline appending arm_aapcs_vfpcc
|
\ acq_rel
|
||||||
syn keyword llvmKeyword arm_aapcscc arm_apcscc asm atomic available_externally
|
\ acquire
|
||||||
syn keyword llvmKeyword blockaddress byval c catch cc ccc cleanup coldcc common
|
\ addrspace
|
||||||
syn keyword llvmKeyword constant datalayout declare default define deplibs
|
\ alias
|
||||||
syn keyword llvmKeyword distinct dllexport dllimport except extern_weak external
|
\ align
|
||||||
syn keyword llvmKeyword externally_initialized fastcc filter gc global hhvmcc
|
\ alignstack
|
||||||
syn keyword llvmKeyword hhvm_ccc hidden initialexec inlinehint inreg
|
\ alwaysinline
|
||||||
syn keyword llvmKeyword intel_ocl_bicc inteldialect internal linkonce
|
\ appending
|
||||||
syn keyword llvmKeyword linkonce_odr local_unnamed_addr localdynamic localexec
|
\ arm_aapcscc
|
||||||
syn keyword llvmKeyword minsize module monotonic msp430_intrcc musttail naked
|
\ arm_aapcs_vfpcc
|
||||||
syn keyword llvmKeyword nest noalias nocapture noimplicitfloat noinline
|
\ arm_apcscc
|
||||||
syn keyword llvmKeyword nonlazybind noredzone noreturn nounwind optnone optsize
|
\ asm
|
||||||
syn keyword llvmKeyword personality private protected ptx_device ptx_kernel
|
\ atomic
|
||||||
syn keyword llvmKeyword readnone readonly release returns_twice sanitize_thread
|
\ available_externally
|
||||||
syn keyword llvmKeyword sanitize_memory section seq_cst sideeffect signext
|
\ blockaddress
|
||||||
syn keyword llvmKeyword singlethread source_filename spir_func spir_kernel sret
|
\ byval
|
||||||
syn keyword llvmKeyword ssp sspreq sspstrong swiftcc tail target thread_local to
|
\ c
|
||||||
syn keyword llvmKeyword triple unnamed_addr unordered uwtable volatile weak
|
\ catch
|
||||||
syn keyword llvmKeyword weak_odr x86_fastcallcc x86_stdcallcc x86_thiscallcc
|
\ cc
|
||||||
syn keyword llvmKeyword x86_64_sysvcc x86_64_win64cc zeroext uselistorder
|
\ ccc
|
||||||
syn keyword llvmKeyword uselistorder_bb musttail
|
\ cleanup
|
||||||
|
\ coldcc
|
||||||
|
\ common
|
||||||
|
\ constant
|
||||||
|
\ datalayout
|
||||||
|
\ declare
|
||||||
|
\ default
|
||||||
|
\ define
|
||||||
|
\ deplibs
|
||||||
|
\ distinct
|
||||||
|
\ dllexport
|
||||||
|
\ dllimport
|
||||||
|
\ except
|
||||||
|
\ external
|
||||||
|
\ externally_initialized
|
||||||
|
\ extern_weak
|
||||||
|
\ fastcc
|
||||||
|
\ filter
|
||||||
|
\ gc
|
||||||
|
\ global
|
||||||
|
\ hhvmcc
|
||||||
|
\ hhvm_ccc
|
||||||
|
\ hidden
|
||||||
|
\ initialexec
|
||||||
|
\ inlinehint
|
||||||
|
\ inreg
|
||||||
|
\ inteldialect
|
||||||
|
\ intel_ocl_bicc
|
||||||
|
\ internal
|
||||||
|
\ linkonce
|
||||||
|
\ linkonce_odr
|
||||||
|
\ localdynamic
|
||||||
|
\ localexec
|
||||||
|
\ local_unnamed_addr
|
||||||
|
\ minsize
|
||||||
|
\ module
|
||||||
|
\ monotonic
|
||||||
|
\ msp430_intrcc
|
||||||
|
\ musttail
|
||||||
|
\ naked
|
||||||
|
\ nest
|
||||||
|
\ noalias
|
||||||
|
\ nocapture
|
||||||
|
\ noimplicitfloat
|
||||||
|
\ noinline
|
||||||
|
\ nonlazybind
|
||||||
|
\ noredzone
|
||||||
|
\ noreturn
|
||||||
|
\ nounwind
|
||||||
|
\ optnone
|
||||||
|
\ optsize
|
||||||
|
\ personality
|
||||||
|
\ private
|
||||||
|
\ protected
|
||||||
|
\ ptx_device
|
||||||
|
\ ptx_kernel
|
||||||
|
\ readnone
|
||||||
|
\ readonly
|
||||||
|
\ release
|
||||||
|
\ returns_twice
|
||||||
|
\ sanitize_address
|
||||||
|
\ sanitize_memory
|
||||||
|
\ sanitize_thread
|
||||||
|
\ section
|
||||||
|
\ seq_cst
|
||||||
|
\ sideeffect
|
||||||
|
\ signext
|
||||||
|
\ singlethread
|
||||||
|
\ source_filename
|
||||||
|
\ spir_func
|
||||||
|
\ spir_kernel
|
||||||
|
\ sret
|
||||||
|
\ ssp
|
||||||
|
\ sspreq
|
||||||
|
\ sspstrong
|
||||||
|
\ swiftcc
|
||||||
|
\ tail
|
||||||
|
\ target
|
||||||
|
\ thread_local
|
||||||
|
\ to
|
||||||
|
\ triple
|
||||||
|
\ unnamed_addr
|
||||||
|
\ unordered
|
||||||
|
\ uselistorder
|
||||||
|
\ uselistorder_bb
|
||||||
|
\ uwtable
|
||||||
|
\ volatile
|
||||||
|
\ weak
|
||||||
|
\ weak_odr
|
||||||
|
\ x86_64_sysvcc
|
||||||
|
\ x86_64_win64cc
|
||||||
|
\ x86_fastcallcc
|
||||||
|
\ x86_stdcallcc
|
||||||
|
\ x86_thiscallcc
|
||||||
|
\ zeroext
|
||||||
|
|
||||||
" Obsolete keywords.
|
" Obsolete keywords.
|
||||||
syn keyword llvmError getresult begin end
|
syn keyword llvmError getresult begin end
|
||||||
|
Loading…
Reference in New Issue
Block a user