brintos

brintos / llvm-project-archived public Read only

0
0
Text · 515 B · 3d01cd5 Raw
19 lines · plain
1; REQUIRES: x862 3; Create an empty profile4; RUN: echo > %t.proftext5; RUN: llvm-profdata merge %t.proftext -o %t.profdata6 7; RUN: llvm-as %s -o %t.o8; RUN: %lld -dylib --cs-profile-path=%t.profdata %t.o -o %t --lto-debug-pass-manager 2>&1 | FileCheck %s --implicit-check-not=PGOInstrumentation9 10; CHECK: Running pass: PGOInstrumentationUse11 12target triple = "x86_64-apple-darwin"13target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"14 15define void @foo() {16entry:17  ret void18}19