forked from OSchip/llvm-project
[X86AsmParser] Refactor AsmRewrite constructors, NFCI
Summary: This is a follow-up of https://reviews.llvm.org/D37105, where a slight refactoring of the constructors of AsmRewrite is proposed. Reviewers: coby Reviewed By: coby Differential Revision: https://reviews.llvm.org/D37110 llvm-svn: 311666
This commit is contained in:
parent
1cc58ecc8a
commit
719f97cf65
|
@ -113,9 +113,9 @@ public:
|
|||
AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len = 0, int64_t val = 0)
|
||||
: Kind(kind), Loc(loc), Len(len), Val(val) {}
|
||||
AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len, StringRef label)
|
||||
: Kind(kind), Loc(loc), Len(len), Val(0), Label(label) {}
|
||||
: AsmRewrite(kind, loc, len) { Label = label; }
|
||||
AsmRewrite(SMLoc loc, unsigned len, IntelExpr exp)
|
||||
: Kind(AOK_IntelExpr), Loc(loc), Len(len), Val(0), IntelExp(exp) {}
|
||||
: AsmRewrite(AOK_IntelExpr, loc, len) { IntelExp = exp; }
|
||||
};
|
||||
|
||||
struct ParseInstructionInfo {
|
||||
|
|
Loading…
Reference in New Issue