xref: /aosp_15_r20/external/compiler-rt/test/profile/instrprof-error.c (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1*7c3d14c8STreehugger Robot // RUN: %clang_profgen -o %t -O3 %s
2*7c3d14c8STreehugger Robot // RUN: env LLVM_PROFILE_FILE=%t/  %run %t 1 2>&1 | FileCheck %s
3*7c3d14c8STreehugger Robot 
main(int argc,const char * argv[])4*7c3d14c8STreehugger Robot int main(int argc, const char *argv[]) {
5*7c3d14c8STreehugger Robot   if (argc < 2)
6*7c3d14c8STreehugger Robot     return 1;
7*7c3d14c8STreehugger Robot   return 0;
8*7c3d14c8STreehugger Robot }
9*7c3d14c8STreehugger Robot // CHECK: LLVM Profile Error: Failed to write file
10