Files
clang-p2996/compiler-rt/test/profile/Inputs/gcc-flag-compatibility.c
Diego Novillo eae951415e Add support for generating profiles in a given directory.
When the file is initialized, this patch checks whether the path
specifies a directory. If so, it creates the directory tree before
truncating the file.

Use default.profdata instead of pgo-data for default indexed profile name.

llvm-svn: 241824
2015-07-09 17:21:52 +00:00

9 lines
88 B
C

int X = 0;
int main() {
int i;
for (i = 0; i < 100; i++)
X += i;
return 0;
}