From 371ca49bad3cf8a7f82d303216cc179835d5a856 Mon Sep 17 00:00:00 2001 From: David Greene Date: Mon, 29 Jun 2009 22:55:52 +0000 Subject: [PATCH] Remove commented code. llvm-svn: 74471 --- llvm/utils/TableGen/Record.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/llvm/utils/TableGen/Record.cpp b/llvm/utils/TableGen/Record.cpp index 92ba62879ee0..a7538731fd1d 100644 --- a/llvm/utils/TableGen/Record.cpp +++ b/llvm/utils/TableGen/Record.cpp @@ -547,21 +547,6 @@ Init *UnOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) { if (LHSd) { return new StringInit(LHSd->getDef()->getName()); } - -// VarInit *LHSv = dynamic_cast(LHS); -// if (LHSv) { -// // If this is not a template arg, cast it -// if (!CurRec->isTemplateArg(LHSv->getName()) -// && !CurMultiClass) { -// return new StringInit(LHSv->getName()); -// } -// break; -// } - -// OpInit *LHSo = dynamic_cast(LHS); -// if (!LHSo) { -// return new StringInit(LHS->getAsString()); -// } } else { StringInit *LHSs = dynamic_cast(LHS);