This website requires JavaScript.
Explore
Help
Register
Sign In
RPCSX
/
llvm
Watch
1
Star
0
Fork
0
You've already forked llvm
mirror of
https://github.com/RPCSX/llvm.git
synced
2025-01-13 07:50:41 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
2009-09-11 18:01:28 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64844 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-17 23:05:26 +00:00
@A
=
alias
internal
void
(
)
*
@F
define
internal
void
@F
(
)
{
ret
void
}
Reference in New Issue
Copy Permalink