mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[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
b75dbbae08
commit
94f045b3a9
@ -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…
x
Reference in New Issue
Block a user