-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[vm, compiler] Don't introduce spurious connections to check bounds i…
…nstructions during LICM. TEST=dartfuzz Bug: #56947 Change-Id: Icf593c246f226dd9d8d8b6b055122f8b567be35e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/391682 Reviewed-by: Alexander Markov <alexmarkov@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
- Loading branch information
1 parent
7338570
commit 6a61e53
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
// The Dart Project Fuzz Tester (1.101). | ||
// Program generated as: | ||
// dart dartfuzz.dart --seed 466727405 --no-fp --no-ffi --flat | ||
// @dart=2.14 | ||
|
||
import 'dart:typed_data'; | ||
|
||
Int16List var11 = Int16List(33); | ||
List<bool> var79 = <bool>[true, false]; | ||
Map<int, bool> var109 = <int, bool>{-74: true, -72: false, 34: true}; | ||
|
||
main() { | ||
try { | ||
if (var79[-9223372034707292160]) { | ||
switch ((var109[var11[-9223372034707292160]]! ? 100 : 200) << | ||
(~9223372034707292159)) {} | ||
} | ||
} catch (e, st) { | ||
print("foo throws"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters