From: Craig Topper Date: Wed, 12 Aug 2015 06:43:10 +0000 (+0000) Subject: [TableGen] Remove unused constructor. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8e7b0427c4d48c9c52ebd3de499db244a3feb992;p=oota-llvm.git [TableGen] Remove unused constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244718 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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) {}