[ms-inline asm] Remove the MatchInstruction() function. Previously, this was
authorChad Rosier <mcrosier@apple.com>
Sat, 13 Oct 2012 00:26:04 +0000 (00:26 +0000)
committerChad Rosier <mcrosier@apple.com>
Sat, 13 Oct 2012 00:26:04 +0000 (00:26 +0000)
commit4996355592ddbb7c1dd513c68d09f40418667684
treea1f26f55e22ae62d7ceeaf8a827a2798444da0df
parenteaafa732dfb80ea4153e7539481a92bf2be697a8
[ms-inline asm]  Remove the MatchInstruction() function.  Previously, this was
the interface between the front-end and the MC layer when parsing inline
assembly.  Unfortunately, this is too deep into the parsing stack. Specifically,
we're unable to handle target-independent assembly (i.e., assembly directives,
labels, etc.).  Note the MatchAndEmitInstruction() isn't the correct
abstraction either.  I'll be exposing target-independent hooks shortly, so this
is really just a cleanup.

llvm-svn: 165858
llvm/include/llvm/MC/MCParser/MCAsmParser.h
llvm/include/llvm/MC/MCTargetAsmParser.h
llvm/lib/MC/MCParser/AsmParser.cpp
llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp