This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
af494faa57
llvm-project
/
llvm
/
test
/
Transforms
/
GlobalDCE
/
2009-02-17-AliasUsesAliasee.ll
5 lines
97 B
LLVM
Raw
Normal View
History
Unescape
Escape
Change these tests to feed the assembly files to opt directly, instead of using llvm-as, now that opt supports this. llvm-svn: 81226
2009-09-09 00:50:01 +08:00
; RUN: opt %s -globaldce
If an alias is dead and so is its aliasee, then globaldce would crash because the alias would still be using the aliasee when the aliasee was deleted. llvm-svn: 64844
2009-02-18 07:05:26 +08:00
@A
=
alias
internal
void
(
)
*
@F
define
internal
void
@F
(
)
{
ret
void
}