Fix anonymous namespace issue introduced by r166714:

include/llvm/MC/MCTargetAsmParser.h:46:8: error: 'llvm::ParseInstructionInfo' has a field 'llvm::ParseInstructionInfo::AsmRewrites' whose type uses the anonymous namespace [-Werror]

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166729 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Kaelyn Uhrain 2012-10-25 22:09:49 +00:00
parent 4f3c676102
commit 12413ae7cb

View File

@ -21,7 +21,6 @@ class MCParsedAsmOperand;
class MCInst;
template <typename T> class SmallVectorImpl;
namespace {
enum AsmRewriteKind {
AOK_Imm,
AOK_Input,
@ -41,7 +40,6 @@ public:
AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len, unsigned val = 0)
: Kind(kind), Loc(loc), Len(len), Val(val) {}
};
}
struct ParseInstructionInfo {