r207933 - Speculative fix to unbreak the buildbots that fail with compiler errors.
Argyrios Kyrtzidis
akyrtzi at gmail.com
Sat May 3 22:27:24 PDT 2014
Author: akirtzidis
Date: Sun May 4 00:27:24 2014
New Revision: 207933
URL: http://llvm.org/viewvc/llvm-project?rev=207933&view=rev
Log:
Speculative fix to unbreak the buildbots that fail with compiler errors.
Modified:
cfe/trunk/lib/Frontend/CompilerInvocation.cpp
Modified: cfe/trunk/lib/Frontend/CompilerInvocation.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Frontend/CompilerInvocation.cpp?rev=207933&r1=207932&r2=207933&view=diff
==============================================================================
--- cfe/trunk/lib/Frontend/CompilerInvocation.cpp (original)
+++ cfe/trunk/lib/Frontend/CompilerInvocation.cpp Sun May 4 00:27:24 2014
@@ -1844,11 +1844,11 @@ std::string CompilerInvocation::getModul
}
// Extend the signature with the sysroot.
- code = hash_combine(code, hsOpts.Sysroot, hsOpts.ResourceDir,
- hsOpts.UseBuiltinIncludes,
+ code = hash_combine(code, hsOpts.Sysroot, hsOpts.UseBuiltinIncludes,
hsOpts.UseStandardSystemIncludes,
hsOpts.UseStandardCXXIncludes,
hsOpts.UseLibcxx);
+ code = hash_combine(code, hsOpts.ResourceDir);
// Extend the signature with the user build path.
code = hash_combine(code, hsOpts.ModuleUserBuildPath);
More information about the cfe-commits
mailing list