From 8e7b0427c4d48c9c52ebd3de499db244a3feb992 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Wed, 12 Aug 2015 06:43:10 +0000 Subject: [PATCH] [TableGen] Remove unused constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244718 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/TableGen/Record.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/llvm/TableGen/Record.h b/include/llvm/TableGen/Record.h index 67fee436bad..2bbb1b90339 100644 --- a/include/llvm/TableGen/Record.h +++ b/include/llvm/TableGen/Record.h @@ -836,8 +836,6 @@ public: class VarInit : public TypedInit { Init *VarName; - explicit VarInit(const std::string &VN, RecTy *T) - : TypedInit(IK_VarInit, T), VarName(StringInit::get(VN)) {} explicit VarInit(Init *VN, RecTy *T) : TypedInit(IK_VarInit, T), VarName(VN) {} -- 2.34.1