brintos

brintos / llvm-project-archived public Read only

0
0
Text · 492 B · aa24786 Raw
15 lines · c
1// REQUIRES: binutils_lto2 3// RUN: rm -rf %t.profraw4// RUN: %clang_pgogen=%t.profraw/ -fuse-ld=bfd -flto %s -o %t5// RUN: %run %t6// RUN: llvm-profdata merge %t.profraw -o %t.profdata7// RUN: llvm-profdata show %t.profdata | FileCheck %s8 9/// Test that we work around https://sourceware.org/bugzilla/show_bug.cgi?id=2626210/// (as of GNU ld 2.35) which happens when trying to generate IR profile with11/// BFD linker + LLVMgold.so12 13// CHECK: Instrumentation level: IR14int main() { return 0; }15