forked from AliveToolkit/alive2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix AliveToolkit#1059 (asm mode): sub-byte refinement check wasn't ac…
…counting for poison
- Loading branch information
1 parent
a35f0b4
commit f59964c
Showing
3 changed files
with
24 additions
and
3 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
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,12 @@ | ||
; TEST-ARGS: -tgt-is-asm | ||
; SKIP-IDENTITY | ||
|
||
define void @src(ptr %0) { | ||
%2 = load i1, ptr %0, align 1 | ||
store i1 %2, ptr %0, align 1 | ||
ret void | ||
} | ||
|
||
define void @tgt(ptr %0) { | ||
ret void | ||
} |