mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 05:58:19 +01:00
Relicense to 0BSD
This commit is contained in:
parent
d51a83d265
commit
a8a712c801
286 changed files with 574 additions and 1035 deletions
|
|
@ -1,7 +1,6 @@
|
|||
/* This file is part of the dynarmic project.
|
||||
* Copyright (c) 2016 MerryMage
|
||||
* This software may be used and distributed according to the terms of the GNU
|
||||
* General Public License version 2 or any later version.
|
||||
* SPDX-License-Identifier: 0BSD
|
||||
*/
|
||||
|
||||
#include "common/assert.h"
|
||||
|
|
@ -181,7 +180,7 @@ s64 Value::GetImmediateAsS64() const {
|
|||
case IR::Type::U64:
|
||||
return s64(GetU64());
|
||||
default:
|
||||
ASSERT_MSG(false, "GetImmediateAsS64 called on an incompatible Value type.");
|
||||
ASSERT_FALSE("GetImmediateAsS64 called on an incompatible Value type.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -200,7 +199,7 @@ u64 Value::GetImmediateAsU64() const {
|
|||
case IR::Type::U64:
|
||||
return u64(GetU64());
|
||||
default:
|
||||
ASSERT_MSG(false, "GetImmediateAsU64 called on an incompatible Value type.");
|
||||
ASSERT_FALSE("GetImmediateAsU64 called on an incompatible Value type.");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue