| commit | 2f7cf7fcb4a77cb8a99f1089dc74b143b8bebcb3 | [log] [tgz] |
|---|---|---|
| author | David Greene <greened@obbligato.org> | Fri Jan 07 17:05:37 2011 +0000 |
| committer | David Greene <greened@obbligato.org> | Fri Jan 07 17:05:37 2011 +0000 |
| tree | 063d6eb18205e6248de6eaea738e73fd672704ef | |
| parent | f30101186f97f1edae855587ae64637e25a86811 [diff] [blame] |
Rename lisp-like functions as suggested by Gabor Greif as loooong time ago. This is both easier to learn and easier to read. llvm-svn: 123001
diff --git a/llvm/utils/TableGen/Record.h b/llvm/utils/TableGen/Record.h index 307594f..f3a5df2 100644 --- a/llvm/utils/TableGen/Record.h +++ b/llvm/utils/TableGen/Record.h
@@ -811,7 +811,7 @@ /// class UnOpInit : public OpInit { public: - enum UnaryOp { CAST, CAR, CDR, LNULL }; + enum UnaryOp { CAST, HEAD, TAIL, EMPTY }; private: UnaryOp Opc; Init *LHS;