File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -1332,20 +1332,6 @@ bool GE(InterpState &S, CodePtr OpPC) {
1332
1332
});
1333
1333
}
1334
1334
1335
- // ===----------------------------------------------------------------------===//
1336
- // InRange
1337
- // ===----------------------------------------------------------------------===//
1338
-
1339
- template <PrimType Name, class T = typename PrimConv<Name>::T>
1340
- bool InRange (InterpState &S, CodePtr OpPC) {
1341
- const T RHS = S.Stk .pop <T>();
1342
- const T LHS = S.Stk .pop <T>();
1343
- const T Value = S.Stk .pop <T>();
1344
-
1345
- S.Stk .push <bool >(LHS <= Value && Value <= RHS);
1346
- return true ;
1347
- }
1348
-
1349
1335
// ===----------------------------------------------------------------------===//
1350
1336
// Dup, Pop, Test
1351
1337
// ===----------------------------------------------------------------------===//
You can’t perform that action at this time.
0 commit comments