mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
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:
parent
4f3c676102
commit
12413ae7cb
@ -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 {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user