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 b95c614 commit 803bd28Copy full SHA for 803bd28
libs/StaticCodeGen/StaticCodeGen.cpp
@@ -267,13 +267,13 @@ std::string CompilationOptions::serializeCompilationOptions() const {
267
}
268
// Serialize OLvl
269
buffer += std::to_string(OLvl);
270
-// Serialize TargetOptions
271
#ifdef __x86_64__
272
errs() << "Using incomplete serialization of compilation options, FIXME!\n";
273
#else
274
#warning \
275
"Unable to emit runtime warning that serialization of compilation options is incomplete!"
276
#endif
+ // Serialize TargetOptions
277
buffer += std::to_string(TOptions.PrintMachineCode);
278
// buffer += std::to_string(TOptions.LessPreciseFPMADOption);
279
buffer += std::to_string(TOptions.UnsafeFPMath);
0 commit comments