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
fba4bb114b
llvm-project
/
llvm
/
test
/
Transforms
/
GlobalDCE
/
2009-02-17-AliasUsesAliasee.ll
5 lines
99 B
LLVM
Raw
Normal View
History
Unescape
Escape
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
2009-09-12 02:01:28 +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
}