-
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] Fix mismatch between ARM's StoreIndexedInstr::MakeLoca…
…tionSummary and EmitNativeCode. TEST=dartfuzz Bug: #56948 Change-Id: I7241071df2aedb34a88817896005eb0fdff674eb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/391487 Reviewed-by: Alexander Markov <alexmarkov@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
- Loading branch information
1 parent
83b0a89
commit 36da75d
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,26 @@ | ||
// 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 2618914219 --no-fp --no-ffi --flat | ||
// @dart=2.14 | ||
|
||
import 'dart:typed_data'; | ||
import 'dart:io'; | ||
|
||
@pragma("vm:never-inline") | ||
foo() { | ||
Int8List(28).fillRange(-19, 25, 9223372034707292160); | ||
} | ||
|
||
main() { | ||
try { | ||
foo(); | ||
} catch (e, st) { | ||
print('foo throws'); | ||
} | ||
|
||
sleep(Duration(seconds: 3)); // Let background compiler catch up. | ||
} |
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