1*7c3d14c8STreehugger Robot// RUN: %clang_profgen -Xclang -fprofile-instrument=llvm -fuse-ld=gold -Wl,-wrap,malloc -Wl,-wrap,calloc -o %t -O3 %S/../Inputs/instrprof-alloc.c 2*7c3d14c8STreehugger Robot// RUN: env LLVM_PROFILE_FILE=%t.profraw %run %t 3*7c3d14c8STreehugger Robot 4*7c3d14c8STreehugger Robot// RUN: %clang_profgen -Xclang -fprofile-instrument=llvm -mllvm -vp-static-alloc=false -fuse-ld=gold -Wl,-wrap,malloc -Wl,-wrap,calloc -o %t.dyn -O3 %S/../Inputs/instrprof-alloc.c 5*7c3d14c8STreehugger Robot// RUN: env LLVM_PROFILE_FILE=%t.profraw not %run %t.dyn 6*7c3d14c8STreehugger Robot 7