mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-08 14:25:05 +00:00
Fix RegAddr macro.
26 failures.
This commit is contained in:
@@ -58,7 +58,7 @@ std::pair<int, typename Decoder<model>::InstructionT> Decoder<model>::decode(con
|
|||||||
/// Handles instructions of the form Ax, jjkk where the latter is implicitly an address.
|
/// Handles instructions of the form Ax, jjkk where the latter is implicitly an address.
|
||||||
#define RegAddr(op, dest, op_size, addr_size) \
|
#define RegAddr(op, dest, op_size, addr_size) \
|
||||||
SetOpSrcDestSize(op, DirectAddress, dest, op_size); \
|
SetOpSrcDestSize(op, DirectAddress, dest, op_size); \
|
||||||
operand_size_ = addr_size; \
|
displacement_size_ = addr_size; \
|
||||||
phase_ = Phase::DisplacementOrOperand
|
phase_ = Phase::DisplacementOrOperand
|
||||||
|
|
||||||
/// Handles instructions of the form jjkk, Ax where the former is implicitly an address.
|
/// Handles instructions of the form jjkk, Ax where the former is implicitly an address.
|
||||||
|
@@ -137,10 +137,10 @@ std::string to_string(InstructionSet::x86::DataPointer pointer, const Instructio
|
|||||||
|
|
||||||
- (NSArray<NSString *> *)testFiles {
|
- (NSArray<NSString *> *)testFiles {
|
||||||
NSString *path = [NSString stringWithUTF8String:TestSuiteHome];
|
NSString *path = [NSString stringWithUTF8String:TestSuiteHome];
|
||||||
NSSet *allowList = nil; /*
|
NSSet *allowList = nil;
|
||||||
[[NSSet alloc] initWithArray:@[
|
// [NSSet setWithObject:
|
||||||
@"F7.0.json.gz",
|
// @"A0.json.gz"
|
||||||
]];*/
|
// ];
|
||||||
|
|
||||||
// Unofficial opcodes; ignored for now.
|
// Unofficial opcodes; ignored for now.
|
||||||
NSSet *ignoreList =
|
NSSet *ignoreList =
|
||||||
|
Reference in New Issue
Block a user