diff options
author | Justin Bogner <mail@justinbogner.com> | 2015-05-12 21:23:09 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2015-05-12 21:23:09 +0000 |
commit | 03038a56fe7da962c733788a132d5061ae6aa583 (patch) | |
tree | 25f37e585258b1172d650dcad05e39ed051d996a /llvm/lib/Transforms | |
parent | 7b9817927ab3c88527907bf0a87f0ef326a050d8 (diff) | |
download | bcm5719-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.cpp | 2 |
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 = |