Speculative fix to unbreak the buildbots that fail with compiler errors.

llvm-svn: 207933
This commit is contained in:
Argyrios Kyrtzidis
2014-05-04 05:27:24 +00:00
parent 027731d7b5
commit d113788ecb

View File

@@ -1844,11 +1844,11 @@ std::string CompilerInvocation::getModuleHash() const {
}
// 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);