[llvm] r244718 - [TableGen] Remove unused constructor.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 11 23:43:11 PDT 2015


Author: ctopper
Date: Wed Aug 12 01:43:10 2015
New Revision: 244718

URL: http://llvm.org/viewvc/llvm-project?rev=244718&view=rev
Log:
[TableGen] Remove unused constructor.

Modified:
    llvm/trunk/include/llvm/TableGen/Record.h

Modified: llvm/trunk/include/llvm/TableGen/Record.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/TableGen/Record.h?rev=244718&r1=244717&r2=244718&view=diff
==============================================================================
--- llvm/trunk/include/llvm/TableGen/Record.h (original)
+++ llvm/trunk/include/llvm/TableGen/Record.h Wed Aug 12 01:43:10 2015
@@ -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) {}
 




More information about the llvm-commits mailing list