[llvm] r307361 - [TableGen] Add a proper namespace to an Instruction in an AsmMatcher test. This is required after r307358.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 6 22:50:45 PDT 2017


Author: ctopper
Date: Thu Jul  6 22:50:45 2017
New Revision: 307361

URL: http://llvm.org/viewvc/llvm-project?rev=307361&view=rev
Log:
[TableGen] Add a proper namespace to an Instruction in an AsmMatcher test. This is required after r307358.

Modified:
    llvm/trunk/test/TableGen/AsmVariant.td

Modified: llvm/trunk/test/TableGen/AsmVariant.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/TableGen/AsmVariant.td?rev=307361&r1=307360&r2=307361&view=diff
==============================================================================
--- llvm/trunk/test/TableGen/AsmVariant.td (original)
+++ llvm/trunk/test/TableGen/AsmVariant.td Thu Jul  6 22:50:45 2017
@@ -31,6 +31,7 @@ def foo : Instruction {
   let InOperandList = (ins);
   let AsmString = "foo";
   let AsmVariantName = "Foo";
+  let Namespace = "Arch";
 }
 
 def BarAlias : InstAlias<"bar", (foo)> {




More information about the llvm-commits mailing list