aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/Record.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-10-06 00:19:21 +0000
committerChris Lattner <sabre@nondot.org>2010-10-06 00:19:21 +0000
commitc7252ce74324e44efa7ec2506035a8e2d2e93d2f (patch)
treef1e875d854c9cb7863cfa3d3269b9f3665129d9e /utils/TableGen/Record.h
parent78caacc2266e504eca315844203b3f727c27fbd0 (diff)
downloadexternal_llvm-c7252ce74324e44efa7ec2506035a8e2d2e93d2f.zip
external_llvm-c7252ce74324e44efa7ec2506035a8e2d2e93d2f.tar.gz
external_llvm-c7252ce74324e44efa7ec2506035a8e2d2e93d2f.tar.bz2
remove the !nameconcat tblgen feature. It "shorthand" and only used in 4 places
where !cast is just as short. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115722 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 85edbf5..44d64ab 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -848,7 +848,7 @@ public:
///
class BinOpInit : public OpInit {
public:
- enum BinaryOp { SHL, SRA, SRL, STRCONCAT, CONCAT, NAMECONCAT, EQ };
+ enum BinaryOp { SHL, SRA, SRL, STRCONCAT, CONCAT, EQ };
private:
BinaryOp Opc;
Init *LHS, *RHS;