mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 19:24:25 +03:00
violet: 32bit fix
This commit is contained in:
@@ -1718,7 +1718,7 @@ bool makeTransientFromLongLiteral(NGHolder &h, RoseInGraph &vg,
|
||||
const vector<RoseInEdge> &ee,
|
||||
const CompileContext &cc) {
|
||||
/* check max width and literal lengths to see if possible */
|
||||
size_t min_lit = ~0ULL;
|
||||
size_t min_lit = (size_t)~0ULL;
|
||||
for (const RoseInEdge &e : ee) {
|
||||
RoseInVertex v = target(e, vg);
|
||||
LIMIT_TO_AT_MOST(&min_lit, vg[v].s.length());
|
||||
|
Reference in New Issue
Block a user