1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

[TableGen] Remove unused constructor.

llvm-svn: 244718
This commit is contained in:
Craig Topper 2015-08-12 06:43:10 +00:00
parent 23546702ae
commit c89b8e3d72

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