[TableGen] Remove unused constructor.

llvm-svn: 244718
This commit is contained in:
Craig Topper 2015-08-12 06:43:10 +00:00
parent 62d526bd81
commit 9b6a90a0fc
1 changed files with 0 additions and 2 deletions

View File

@ -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) {}