diff options
author | Bob Wilson <bob.wilson@apple.com> | 2014-03-06 21:36:04 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2014-03-06 21:36:04 +0000 |
commit | bd48799c8de417633ae745cd3e9c5c7bf4df255a (patch) | |
tree | cd9d2c83e193148ef0cdcacf552d38736b8dd931 /clang/test/CodeGen | |
parent | 363bd1a8151932fe83ee64336c9b93781ebc879b (diff) | |
download | bcm5719-llvm-bd48799c8de417633ae745cd3e9c5c7bf4df255a.tar.gz bcm5719-llvm-bd48799c8de417633ae745cd3e9c5c7bf4df255a.zip |
PGO: rename profile data files from .pgodata to .profdata.
These tests were added before we had settled on using a .profdata extension
for the profile data files. Renaming them now for consistency.
llvm-svn: 203166
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/Inputs/instr-attribute.profdata (renamed from clang/test/CodeGen/Inputs/instr-attribute.pgodata) | 0 | ||||
-rw-r--r-- | clang/test/CodeGen/Inputs/instr-profile.profdata (renamed from clang/test/CodeGen/Inputs/instr-profile.pgodata) | 0 | ||||
-rw-r--r-- | clang/test/CodeGen/instr-attribute.c | 2 | ||||
-rw-r--r-- | clang/test/CodeGen/instr-profile.c | 2 |
4 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/Inputs/instr-attribute.pgodata b/clang/test/CodeGen/Inputs/instr-attribute.profdata index 0419b3b3bef..0419b3b3bef 100644 --- a/clang/test/CodeGen/Inputs/instr-attribute.pgodata +++ b/clang/test/CodeGen/Inputs/instr-attribute.profdata diff --git a/clang/test/CodeGen/Inputs/instr-profile.pgodata b/clang/test/CodeGen/Inputs/instr-profile.profdata index f6337d23329..f6337d23329 100644 --- a/clang/test/CodeGen/Inputs/instr-profile.pgodata +++ b/clang/test/CodeGen/Inputs/instr-profile.profdata diff --git a/clang/test/CodeGen/instr-attribute.c b/clang/test/CodeGen/instr-attribute.c index 0005c5a62e8..b2399807543 100644 --- a/clang/test/CodeGen/instr-attribute.c +++ b/clang/test/CodeGen/instr-attribute.c @@ -1,6 +1,6 @@ // Test that instrumentation based profiling sets function attributes correctly. -// RUN: %clang %s -o - -mllvm -disable-llvm-optzns -emit-llvm -S -fprofile-instr-use=%S/Inputs/instr-attribute.pgodata | FileCheck %s +// RUN: %clang %s -o - -mllvm -disable-llvm-optzns -emit-llvm -S -fprofile-instr-use=%S/Inputs/instr-attribute.profdata | FileCheck %s extern int atoi(const char *); diff --git a/clang/test/CodeGen/instr-profile.c b/clang/test/CodeGen/instr-profile.c index 3428520278b..05656ab508e 100644 --- a/clang/test/CodeGen/instr-profile.c +++ b/clang/test/CodeGen/instr-profile.c @@ -6,7 +6,7 @@ // this test. // RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name instr-profile.c %s -o - -emit-llvm -fprofile-instr-generate | FileCheck -check-prefix=PGOGEN %s -// RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name instr-profile.c %s -o - -emit-llvm -fprofile-instr-use=%S/Inputs/instr-profile.pgodata | FileCheck -check-prefix=PGOUSE %s +// RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name instr-profile.c %s -o - -emit-llvm -fprofile-instr-use=%S/Inputs/instr-profile.profdata | FileCheck -check-prefix=PGOUSE %s // PGOGEN: @[[SLC:__llvm_pgo_ctr[0-9]*]] = private global [4 x i64] zeroinitializer // PGOGEN: @[[IFC:__llvm_pgo_ctr[0-9]*]] = private global [11 x i64] zeroinitializer |