projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ca3d34
)
[TableGen] Remove unused constructor.
author
Craig Topper
<craig.topper@gmail.com>
Wed, 12 Aug 2015 06:43:10 +0000
(06:43 +0000)
committer
Craig Topper
<craig.topper@gmail.com>
Wed, 12 Aug 2015 06:43:10 +0000
(06:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244718
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/TableGen/Record.h
patch
|
blob
|
history
diff --git
a/include/llvm/TableGen/Record.h
b/include/llvm/TableGen/Record.h
index 67fee436bad899663ddc4c0026c8df13018e358f..2bbb1b9033971c2861b472640ba3d3498996e79a 100644
(file)
--- 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) {}