Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
c2e34452
Commit
c2e34452
authored
14 years ago
by
Chris Lattner
Browse files
Options
Downloads
Patches
Plain Diff
merge one more away
llvm-svn: 120375
parent
7578d0df
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
llvm/test/Transforms/DeadStoreElimination/alloca.ll
+0
-9
0 additions, 9 deletions
llvm/test/Transforms/DeadStoreElimination/alloca.ll
llvm/test/Transforms/DeadStoreElimination/simple.ll
+12
-0
12 additions, 0 deletions
llvm/test/Transforms/DeadStoreElimination/simple.ll
with
12 additions
and
9 deletions
llvm/test/Transforms/DeadStoreElimination/alloca.ll
deleted
100644 → 0
+
0
−
9
View file @
7578d0df
; RUN: opt < %s -dse -S | not grep DEAD
define
void
@test
(
i32
*
%Q
)
{
%P
=
alloca
i32
; <i32*> [#uses=1]
%DEAD
=
load
i32
*
%Q
; <i32> [#uses=1]
store
i32
%DEAD
,
i32
*
%P
ret
void
}
This diff is collapsed.
Click to expand it.
llvm/test/Transforms/DeadStoreElimination/simple.ll
+
12
−
0
View file @
c2e34452
...
...
@@ -165,3 +165,15 @@ define i32* @test13() {
declare
noalias
i8
*
@malloc
(
i32
)
define
void
@test14
(
i32
*
%Q
)
{
%P
=
alloca
i32
%DEAD
=
load
i32
*
%Q
store
i32
%DEAD
,
i32
*
%P
ret
void
; CHECK: @test14
; CHECK-NEXT: ret void
}
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