From: Chris Lattner Date: Sat, 28 Feb 2004 17:33:21 +0000 (+0000) Subject: fix a bug in the testcase X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=eb7d6d016ea32cbc5978f7a433864b185a544ec9;p=oota-llvm.git fix a bug in the testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11949 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/TableGen/SuperSubclassSameName.td b/test/TableGen/SuperSubclassSameName.td index ded84de6954..087df87124b 100644 --- a/test/TableGen/SuperSubclassSameName.td +++ b/test/TableGen/SuperSubclassSameName.td @@ -4,7 +4,7 @@ class Arg { int a; } -class TheArg : Arg { let a = 1; } +def TheArg : Arg { let a = 1; } class Super {