brintos

brintos / llvm-project-archived public Read only

0
0
Text · 374 B · d4c2e5d Raw
9 lines · c
1// RUN: mkdir -p %t2// RUN: %clang -target x86_64-apple-darwin -fcs-profile-generate -flto=thin -c -o %t/main.bc %s3// RUN: llvm-lto2 run --thinlto-distributed-indexes %t/main.bc -o %t/index -r=%t/main.bc,_main,px4// RUN: %clang -target x86_64-apple-darwin -fcs-profile-generate -c -o %t/main.o -fthinlto-index=%t/main.bc.thinlto.bc %t/main.bc5 6int main() {7    return 0;8}9