mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 17:25:45 -04:00
CPU/NewRec: Add AArch32 backend
This commit is contained in:
@ -156,10 +156,11 @@ void CodeBuffer::Reset() {
|
||||
SetClean();
|
||||
}
|
||||
|
||||
void CodeBuffer::Reset(byte* buffer, size_t capacity) {
|
||||
void CodeBuffer::Reset(byte* buffer, size_t capacity, bool managed) {
|
||||
buffer_ = buffer;
|
||||
cursor_ = buffer;
|
||||
capacity_ = capacity;
|
||||
managed_ = managed;
|
||||
}
|
||||
|
||||
void CodeBuffer::Grow(size_t new_capacity) {
|
||||
|
Reference in New Issue
Block a user