blob: 7c30d87dc1b35fa1dc3b7a5575341c705b5fc068 [file] [log] [blame]
Dan Gohman5bb7c7c2009-09-08 22:34:10 +00001; RUN: opt %s -globalopt -S | grep {define void @a}
Duncan Sandse7f431f2009-02-15 09:56:08 +00002
3define internal void @f() {
4 ret void
5}
6
7@a = alias void ()* @f
8
9define void @g() {
10 call void()* @a()
11 ret void
12}