Name Date Size #Lines LOC

..--

READMEH A D07-Feb-20231,022 3724

emacs.elH A D02-Aug-2018958 3324

llvm-mir-mode.elH A D17-Jul-20242.2 KiB7144

llvm-mode.elH A D02-Jan-20256.9 KiB14789

tablegen-mode.elH A D10-Jan-20244.9 KiB13182

README

1-*- llvm/utils/emacs/README -*-
2
3These are syntax highlighting files for the Emacs and XEmacs editors. Included
4are:
5
6* llvm-mode.el
7
8  Syntax highlighting mode for LLVM assembly files. To use, add this code to
9  your ~/.emacs :
10
11  (setq load-path
12    (cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
13  (require 'llvm-mode)
14
15* llvm-mir-mode.el
16
17  Syntax highlighting mode for LLVM Machine IR files. To use, add this code to
18  your ~/.emacs :
19
20  (setq load-path
21    (cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
22  (require 'llvm-mir-mode)
23
24* tablegen-mode.el
25
26  Syntax highlighting mode for TableGen description files. To use, add this code
27  to your ~/.emacs:
28
29  (setq load-path
30    (cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
31  (require 'tablegen-mode)
32
33
34Note: If you notice missing or incorrect syntax highlighting, please contact
35<llvm-bugs [at] lists.llvm.org>; if you wish to provide a patch to improve the
36functionality, it will be most appreciated. Thank you.
37