Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LLVM project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Panda
LLVM project
Commits
47130384
Commit
47130384
authored
2 years ago
by
Arthur Eubanks
Browse files
Options
Downloads
Patches
Plain Diff
[test][DSE] Precommit more assume tests
parent
627f55b3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/test/Transforms/DeadStoreElimination/assume.ll
+19
-0
19 additions, 0 deletions
llvm/test/Transforms/DeadStoreElimination/assume.ll
with
19 additions
and
0 deletions
llvm/test/Transforms/DeadStoreElimination/assume.ll
+
19
−
0
View file @
47130384
...
...
@@ -17,6 +17,25 @@ define void @f() {
ret
void
}
define
void
@f2
()
{
; CHECK-LABEL: @f2(
; CHECK-NEXT: [[TMP1:%.*]] = call noalias i8* @_Znwm(i64 32)
; CHECK-NEXT: [[TMP2:%.*]] = icmp ugt i8* [[TMP1]], @global
; CHECK-NEXT: call void @llvm.assume(i1 [[TMP2]])
; CHECK-NEXT: store i8 0, i8* [[TMP1]], align 1
; CHECK-NEXT: call void @quux(i8* @global)
; CHECK-NEXT: ret void
;
%tmp1
=
call
noalias
i8
*
@_Znwm
(
i64
32
)
%tmp2
=
icmp
ugt
i8
*
%tmp1
,
@global
call
void
@llvm.assume
(
i1
%tmp2
)
store
i8
0
,
i8
*
%tmp1
,
align
1
call
void
@quux
(
i8
*
@global
)
ret
void
}
declare
i8
*
@_Znwm
(
i64
)
declare
void
@llvm.assume
(
i1
)
declare
void
@quux
(
i8
*)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment