diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-03 00:57:41 +0000 |
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-03 00:57:41 +0000 |
| commit | ddbfa79371c17dd37ba4180d87fbd2e9368b17de (patch) | |
| tree | 52a18499770f31bdf8b324625c3d6e35eb00825e | |
| parent | d8acf7c5c3fbecbe4a78fc4c5c9790cffb7bc1e4 (diff) | |
| download | bcm5719-llvm-ddbfa79371c17dd37ba4180d87fbd2e9368b17de.tar.gz bcm5719-llvm-ddbfa79371c17dd37ba4180d87fbd2e9368b17de.zip | |
Added the `to' keyword as in `cast <type> <data> to <type>'.
Cleaned up the header of the file (comments/description/etc).
llvm-svn: 6557
| -rw-r--r-- | llvm/utils/emacs/llvm-mode.el | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/llvm/utils/emacs/llvm-mode.el b/llvm/utils/emacs/llvm-mode.el index 578257ab504..d14d4c273b8 100644 --- a/llvm/utils/emacs/llvm-mode.el +++ b/llvm/utils/emacs/llvm-mode.el @@ -1,9 +1,6 @@ -;; Author: Misha Brukman <brukman@cs.uiuc.edu> -;; Description: -;; Major mode for the LLVM assembler language. -;; Updated: -;; Apr 22, 2003 -;; Code: +;; Author: Misha Brukman <brukman@cs.uiuc.edu> +;; Description: Major mode for the LLVM assembler language. +;; Updated: 2003-06-02 ;; Create mode-specific tables. (defvar llvm-mode-syntax-table nil @@ -34,7 +31,7 @@ ;; Arithmetic and Logical Operators '("add\\|sub\\|mul\\|div\\|rem\\|and\\|or\\|xor\\|set\\(ne\\|eq\\|lt\\|gt\\|le\\|ge\\)" . font-lock-keyword-face) ;; Special instructions - '("phi\\|call\\|cast\\|shl\\|shr\\|va_arg" . font-lock-keyword-face) + '("phi\\|call\\|cast\\|to\\|shl\\|shr\\|va_arg" . font-lock-keyword-face) ;; Control instructions '("ret\\|br\\|switch\\|invoke" . font-lock-keyword-face) ;; Memory operators |

