mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Comptime debugging
This commit is contained in:
parent
bbb97d1490
commit
ff2e40e3bf
40 changed files with 6213 additions and 443 deletions
|
@ -7676,7 +7676,7 @@ DbgTypedValue DbgExprEvaluator::MatchMethod(BfAstNode* targetSrc, DbgTypedValue
|
|||
if (bitCount <= 0)
|
||||
return argValues[0];
|
||||
|
||||
int64 andBits = (0x8000000000000000LL) >> ((argValues[0].mType->GetByteCount() - 8) * 8 + bitCount - 1);
|
||||
int64 andBits = (0x8000000000000000LL) >> ((argValues[0].mType->GetByteCount() - 8) * 8 + bitCount - 1);
|
||||
DbgTypedValue result;
|
||||
result.mType = argValues[0].mType;
|
||||
result.mInt64 = val & ~andBits;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue