mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Fix pcodeparse.y after only the generated pcodeparse.cc was changed
311a22c038
has changed the purely
generated pcodeparse.cc instead of updating pcodeparse.y and
re-generating the source. This meant that the .y file was out of sync
with the .h file and re-generating would lead to compiler errors because
of the uintb/uint4 mismatch.
This commit is contained in:
parent
c1f8632e66
commit
b821aec519
1 changed files with 2 additions and 2 deletions
|
@ -635,10 +635,10 @@ void PcodeLexer::initialize(istream *t)
|
|||
}
|
||||
}
|
||||
|
||||
uintb PcodeSnippet::allocateTemp(void)
|
||||
uint4 PcodeSnippet::allocateTemp(void)
|
||||
|
||||
{ // Allocate a variable in the unique space and return the offset
|
||||
uintb res = tempbase;
|
||||
uint4 res = tempbase;
|
||||
tempbase += 16;
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue