summaryrefslogtreecommitdiff
path: root/utils/vim
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2016-11-03 15:56:06 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2016-11-03 15:56:06 +0000
commitd59cd540700af791dd51be39d0df03e593a11ff3 (patch)
treecf63ad3f210f71f6dd32ea478c8b447e4016877d /utils/vim
parent2e9ec7b0819e88564b33f5a015758b2d70bf7093 (diff)
vim: special case the CHECK prefix
A large number of tests in the LLVM tree use the default (CHECK) prefix to indicate checked expressions via FileCheck. Highlight it as a special comment. Although this wont get all the instances of the checked patters, it is strictly better than the current state. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285927 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/vim')
-rw-r--r--utils/vim/syntax/llvm.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/vim/syntax/llvm.vim b/utils/vim/syntax/llvm.vim
index 8fb22365cdd..3a2b8285350 100644
--- a/utils/vim/syntax/llvm.vim
+++ b/utils/vim/syntax/llvm.vim
@@ -192,6 +192,7 @@ syn match llvmConstant /\<DIFlag[A-Za-z]\+\>/
syn match llvmSpecialComment /;\s*PR\d*\s*$/
syn match llvmSpecialComment /;\s*REQUIRES:.*$/
syn match llvmSpecialComment /;\s*RUN:.*$/
+syn match llvmSpecialComment /;\s*CHECK:.*$/
syn match llvmSpecialComment /;\s*XFAIL:.*$/
if version >= 508 || !exists("did_c_syn_inits")