diff options
Diffstat (limited to 'clang/lib/Driver/ToolChains.cpp')
-rw-r--r-- | clang/lib/Driver/ToolChains.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/ToolChains.cpp b/clang/lib/Driver/ToolChains.cpp index 936acec3c52..4090a9ad1b8 100644 --- a/clang/lib/Driver/ToolChains.cpp +++ b/clang/lib/Driver/ToolChains.cpp @@ -329,7 +329,7 @@ void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args, // there are no calls to the runtime in the code. if (Args.hasArg(options::OPT_fprofile_instr_generate)) { CmdArgs.push_back("-u"); - CmdArgs.push_back("___llvm_pgo_runtime"); + CmdArgs.push_back("___llvm_profile_runtime"); } // Select the appropriate runtime library for the target. |