alias.ll 190 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ; 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 }