mirror of
https://github.com/Z3Prover/z3
synced 2025-06-04 13:21:22 +00:00
fix parenthesis
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
41072e3125
commit
75ae58f49e
1 changed files with 1 additions and 1 deletions
|
@ -793,7 +793,7 @@ namespace sat {
|
||||||
|
|
||||||
if (m_config.m_propagate_prefetch) {
|
if (m_config.m_propagate_prefetch) {
|
||||||
#if defined(__GLUC__) || defined(__clang__)
|
#if defined(__GLUC__) || defined(__clang__)
|
||||||
__builtin_prefetch((const char*)(&*(m_watches[l.index()].c_ptr()));
|
__builtin_prefetch((const char*)(&*(m_watches[l.index()].c_ptr())));
|
||||||
#else
|
#else
|
||||||
_mm_prefetch((const char*)(&*(m_watches[l.index()].c_ptr())), _MM_HINT_T1);
|
_mm_prefetch((const char*)(&*(m_watches[l.index()].c_ptr())), _MM_HINT_T1);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue