================
@@ -112,6 +112,8 @@ class MCTargetOptions {
   // Whether or not to use full register names on PowerPC.
   bool PPCUseFullRegisterNames : 1;
 
+  bool PgoInstrumentation = false;
----------------
rnk wrote:

Target options like this don't play well with (thin)LTO , because they don't 
carry over naturally from the frontend compilation step to the backend 
compilation step, which LTO separates. Is there an existing global named 
metadata flag you can look for instead to control this debug info setting?

https://github.com/llvm/llvm-project/pull/114260
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to