summaryrefslogtreecommitdiff
path: root/utils/TableGen/Record.h
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2011-01-07 17:05:37 +0000
committerDavid Greene <greened@obbligato.org>2011-01-07 17:05:37 +0000
commit1434f66b2e132a707e2c8ccb3350ea13fb5aa051 (patch)
tree4802d84c0730654fc43566fdb31ce9ac1fbe528c /utils/TableGen/Record.h
parent50dd09bd8592822214ff5fd66cffc3421b92d079 (diff)
downloadllvm-1434f66b2e132a707e2c8ccb3350ea13fb5aa051.tar.gz
llvm-1434f66b2e132a707e2c8ccb3350ea13fb5aa051.tar.bz2
llvm-1434f66b2e132a707e2c8ccb3350ea13fb5aa051.tar.xz
Rename lisp-like functions as suggested by Gabor Greif as loooong time
ago. This is both easier to learn and easier to read. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/Record.h')
-rw-r--r--utils/TableGen/Record.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h
index 307594f8ec..f3a5df23ec 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -811,7 +811,7 @@ public:
///
class UnOpInit : public OpInit {
public:
- enum UnaryOp { CAST, CAR, CDR, LNULL };
+ enum UnaryOp { CAST, HEAD, TAIL, EMPTY };
private:
UnaryOp Opc;
Init *LHS;