-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DAG] isGuaranteedNotToBeUndefOrPoison - handle FrameIndex/TargetFram…
…eIndex Fixes #58904
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
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
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,20 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py | ||
; RUN: llc < %s -mtriple=wasm32-- | FileCheck %s | ||
|
||
define i64 @PR58904() { | ||
; CHECK-LABEL: PR58904: | ||
; CHECK: .functype PR58904 () -> (i64) | ||
; CHECK-NEXT: # %bb.0: # %BB | ||
; CHECK-NEXT: global.get __stack_pointer | ||
; CHECK-NEXT: i32.const 16 | ||
; CHECK-NEXT: i32.sub | ||
; CHECK-NEXT: i32.const 8 | ||
; CHECK-NEXT: i32.add | ||
; CHECK-NEXT: i64.extend_i32_u | ||
; CHECK-NEXT: # fallthrough-return | ||
BB: | ||
%A = alloca i64 | ||
%C2 = ptrtoint i64* %A to i64 | ||
%B2 = urem i64 %C2, -1 | ||
ret i64 %B2 | ||
} |