1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

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

llvm-svn: 307361
This commit is contained in:
Craig Topper 2017-07-07 05:50:45 +00:00
parent f9132eae4f
commit af9e9d0d1a

View File

@ -31,6 +31,7 @@ def foo : Instruction {
let InOperandList = (ins);
let AsmString = "foo";
let AsmVariantName = "Foo";
let Namespace = "Arch";
}
def BarAlias : InstAlias<"bar", (foo)> {