You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
190 B

; RUN: %lli -force-interpreter %s
define i32 @func() {
entry:
ret i32 0
}
@alias = alias i32 (), i32 ()* @func
define i32 @main() {
entry:
%call = call i32 @alias()
ret i32 %call
}