From: Craig Topper Date: Wed, 12 Aug 2015 06:43:10 +0000 (+0000) Subject: [TableGen] Remove unused constructor. X-Git-Tag: studio-1.4~213 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b6a90a0fc946790f7bde1870cacb7e1cac82d38;p=platform%2Fupstream%2Fllvm.git [TableGen] Remove unused constructor. llvm-svn: 244718 --- diff --git a/llvm/include/llvm/TableGen/Record.h b/llvm/include/llvm/TableGen/Record.h index 67fee43..2bbb1b9 100644 --- a/llvm/include/llvm/TableGen/Record.h +++ b/llvm/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) {}