summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2015-05-12 21:23:09 +0000
committerJustin Bogner <mail@justinbogner.com>2015-05-12 21:23:09 +0000
commit03038a56fe7da962c733788a132d5061ae6aa583 (patch)
tree25f37e585258b1172d650dcad05e39ed051d996a /llvm/lib/Transforms
parent7b9817927ab3c88527907bf0a87f0ef326a050d8 (diff)
downloadbcm5719-llvm-03038a56fe7da962c733788a132d5061ae6aa583.tar.gz
bcm5719-llvm-03038a56fe7da962c733788a132d5061ae6aa583.zip
InstrProf: Update name of compiler-rt routine for setting filename
Patch by Teresa Johnson. llvm-svn: 237186
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
index 4d24ecaf851..e9bd4870797 100644
--- a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
+++ b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
@@ -354,7 +354,7 @@ void InstrProfiling::emitInitialization() {
auto *SetNameTy = FunctionType::get(VoidTy, Int8PtrTy, false);
auto *SetNameF =
Function::Create(SetNameTy, GlobalValue::ExternalLinkage,
- "__llvm_profile_set_filename_env_override", M);
+ "__llvm_profile_override_default_filename", M);
// Create variable for profile name
Constant *ProfileNameConst =
OpenPOWER on IntegriCloud