xref: /llvm-project/compiler-rt/test/profile/AIX/bexpfull-pgo.c (revision 15cccc55919d27eb2e89379a65f6c7809f679fda)
1 // RUN: %clang_pgogen %s -bexpall
2 // RUN: %clang_pgogen %s -bexpfull
3 
4 #include <string.h>
5 int ar[10];
6 int n;
main()7 int main() { memcpy(ar, ar + 1, n); };
8