brintos

brintos / llvm-project-archived public Read only

0
0
Text · 278 B · e9e04be Raw
9 lines · c
1// RUN: not %clang_cc1 -emit-llvm %s -o - -fprofile-instrument-use=clang -fprofile-instrument-use-path=%t.nonexistent.profdata 2>&1 | FileCheck %s2 3// CHECK: error: Error in reading profile {{.*}}.nonexistent.profdata:4// CHECK-NOT: Assertion failed5 6int main() {7  return 0;8}9