fix minsize detection: minsize attribute implies optimizing for size
[oota-llvm.git] / test / ExecutionEngine / OrcLazy / private_linkage.ll
1 ; RUN: lli -jit-kind=orc-lazy %s
2
3 define private void @_ZL3foov() {
4 entry:
5   ret void
6 }
7
8 define i32 @main(i32 %argc, i8** nocapture readnone %argv) {
9 entry:
10   tail call void @_ZL3foov()
11   ret i32 0
12 }