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.
-Zno-verify-llvm-ir
1 parent 6848248 commit 34b47b0Copy full SHA for 34b47b0
src/librustc_session/session.rs
@@ -429,7 +429,9 @@ impl Session {
429
self.opts.debugging_opts.asm_comments
430
}
431
pub fn verify_llvm_ir(&self) -> bool {
432
- self.opts.debugging_opts.verify_llvm_ir || cfg!(always_verify_llvm_ir)
+ (self.opts.debugging_opts.verify_llvm_ir
433
+ || cfg!(always_verify_llvm_ir))
434
+ && !self.opts.debugging_opts.no_verify_llvm_ir
435
436
pub fn borrowck_stats(&self) -> bool {
437
self.opts.debugging_opts.borrowck_stats
0 commit comments