mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 12:32:21 +00:00
LibX86: Don't use "if (foo) [[unlikely]] { }" for now (to please clang)
This commit is contained in:
parent
ad152bfa59
commit
5a050cb8d1
Notes:
sideshowbarker
2024-07-18 21:34:22 +09:00
Author: https://github.com/awesomekling
Commit: 5a050cb8d1
1 changed files with 1 additions and 1 deletions
|
@ -833,7 +833,7 @@ ALWAYS_INLINE Instruction::Instruction(InstructionStreamType& stream, bool o32,
|
|||
m_descriptor = &m_descriptor->slashes[rm() & 7];
|
||||
}
|
||||
|
||||
if (!m_descriptor->mnemonic) [[unlikely]] {
|
||||
if (!m_descriptor->mnemonic) {
|
||||
if (has_sub_op()) {
|
||||
if (has_slash)
|
||||
fprintf(stderr, "Instruction %02X %02X /%u not understood\n", m_op, m_sub_op, slash());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue