[PATCH] D84553: [Utils] Add noundef attribute to vim/emacs syntax scripts
Gui Andrade via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 3 09:46:50 PDT 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGcaf002c7be44: [Utils] Add noundef attribute to vim/emacs/vscode syntax scripts (authored by guiand).
Changed prior to commit:
https://reviews.llvm.org/D84553?vs=280572&id=282655#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D84553/new/
https://reviews.llvm.org/D84553
Files:
llvm/utils/emacs/llvm-mode.el
llvm/utils/vim/syntax/llvm.vim
llvm/utils/vscode/llvm/syntaxes/ll.tmLanguage.yaml
Index: llvm/utils/vscode/llvm/syntaxes/ll.tmLanguage.yaml
===================================================================
--- llvm/utils/vscode/llvm/syntaxes/ll.tmLanguage.yaml
+++ llvm/utils/vscode/llvm/syntaxes/ll.tmLanguage.yaml
@@ -216,6 +216,7 @@
\\bnorecurse\\b|\
\\bnoredzone\\b|\
\\bnoreturn\\b|\
+ \\bnoundef\\b|\
\\bnounwind\\b|\
\\boptnone\\b|\
\\boptsize\\b|\
Index: llvm/utils/vim/syntax/llvm.vim
===================================================================
--- llvm/utils/vim/syntax/llvm.vim
+++ llvm/utils/vim/syntax/llvm.vim
@@ -119,6 +119,7 @@
\ norecurse
\ noredzone
\ noreturn
+ \ noundef
\ nounwind
\ optnone
\ optsize
Index: llvm/utils/emacs/llvm-mode.el
===================================================================
--- llvm/utils/emacs/llvm-mode.el
+++ llvm/utils/emacs/llvm-mode.el
@@ -25,7 +25,7 @@
'("alwaysinline" "argmemonly" "builtin" "cold" "convergent" "inaccessiblememonly"
"inaccessiblemem_or_argmemonly" "inlinehint" "jumptable" "minsize" "naked" "nobuiltin"
"noduplicate" "noimplicitfloat" "noinline" "nonlazybind" "noredzone" "noreturn"
- "norecurse" "nounwind" "optnone" "optsize" "readnone" "readonly" "returns_twice"
+ "norecurse" "noundef" "nounwind" "optnone" "optsize" "readnone" "readonly" "returns_twice"
"speculatable" "ssp" "sspreq" "sspstrong" "safestack" "sanitize_address" "sanitize_hwaddress" "sanitize_memtag"
"sanitize_thread" "sanitize_memory" "strictfp" "uwtable" "writeonly" "immarg") 'symbols) . font-lock-constant-face)
;; Variables
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D84553.282655.patch
Type: text/x-patch
Size: 1711 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200803/945657c7/attachment.bin>
More information about the llvm-commits
mailing list