We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a71a0b commit 6ee1a77Copy full SHA for 6ee1a77
utils/check-incremental
@@ -74,6 +74,11 @@ def main():
74
if VERBOSE:
75
print("Reference compilation of " + output_file + ":")
76
77
+ # As a workaround for rdar://problem/43442957 and rdar://problem/43439465
78
+ # we have to "warm-up" the clang module cache. Without that in some cases
79
+ # we end up with small differences in the debug info.
80
+ compile_and_stat(new_args, output_file)
81
+
82
reference_md5, reference_time = compile_and_stat(new_args, output_file)
83
84
subprocess.check_call(["cp", output_file, output_file + ".ref.o"])
0 commit comments