You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Enable canonical jump tables if CFI is enabled. (See https://reviews.llvm.org/D65629.)
217
217
if sess.is_sanitizer_cfi_canonical_jump_tables_enabled() && sess.is_sanitizer_cfi_enabled(){
218
-
let canonical_jump_tables = c"CFI Canonical Jump Tables".as_ptr().cast();
218
+
let canonical_jump_tables = c"CFI Canonical Jump Tables".as_ptr();
// Enable LTO unit splitting if specified or if CFI is enabled. (See https://reviews.llvm.org/D53891.)
230
230
if sess.is_split_lto_unit_enabled() || sess.is_sanitizer_cfi_enabled(){
231
-
let enable_split_lto_unit = c"EnableSplitLTOUnit".as_ptr().cast();
231
+
let enable_split_lto_unit = c"EnableSplitLTOUnit".as_ptr();
0 commit comments