mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 12:34:35 +03:00
Minor.
This commit is contained in:
@@ -450,7 +450,7 @@ Error Compiler::comment(const char* fmt, ...) {
|
|||||||
|
|
||||||
Error Compiler::_hint(Var& var, uint32_t hint, uint32_t value) {
|
Error Compiler::_hint(Var& var, uint32_t hint, uint32_t value) {
|
||||||
if (var.getId() == kInvalidValue)
|
if (var.getId() == kInvalidValue)
|
||||||
return NULL;
|
return kErrorOk;
|
||||||
|
|
||||||
HLHint* node = newHintNode(var, hint, value);
|
HLHint* node = newHintNode(var, hint, value);
|
||||||
if (node == NULL)
|
if (node == NULL)
|
||||||
|
|||||||
@@ -1989,7 +1989,7 @@ ASMJIT_ENUM(X86Round) {
|
|||||||
//! Round control - round toward zero (truncate).
|
//! Round control - round toward zero (truncate).
|
||||||
kX86RoundTrunc = 0x3,
|
kX86RoundTrunc = 0x3,
|
||||||
//! Rounding select - if set it will use the the current rounding mode
|
//! Rounding select - if set it will use the the current rounding mode
|
||||||
//! according to MXCS and ignore the round control (RC) bits.
|
//! according to MXCS and ignore the round control (RC) bits.
|
||||||
kX86RoundCurrent = 0x4,
|
kX86RoundCurrent = 0x4,
|
||||||
//! Precision mask - if set it avoids an inexact exception.
|
//! Precision mask - if set it avoids an inexact exception.
|
||||||
kX86RoundInexact = 0x8
|
kX86RoundInexact = 0x8
|
||||||
|
|||||||
Reference in New Issue
Block a user