summary refs log tree commit diff
path: root/compiler/rustc_query_system
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-02-25 05:16:38 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-02-25 06:11:02 +0100
commitdd73080cc037678410ae7e016298a6bbafaae3a6 (patch)
treeccd689deaa1a77bde350cd8b70e62d8971f60c36 /compiler/rustc_query_system
parentab5d3fbe7db281ca48a7b88f90c81bf5e795564c (diff)
downloadrust-dd73080cc037678410ae7e016298a6bbafaae3a6.tar.gz
rust-dd73080cc037678410ae7e016298a6bbafaae3a6.zip
Don't inline try_execute_query
Diffstat (limited to 'compiler/rustc_query_system')
-rw-r--r--compiler/rustc_query_system/src/query/plumbing.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_query_system/src/query/plumbing.rs b/compiler/rustc_query_system/src/query/plumbing.rs
index fa877ceaf23..586bd38fbb8 100644
--- a/compiler/rustc_query_system/src/query/plumbing.rs
+++ b/compiler/rustc_query_system/src/query/plumbing.rs
@@ -347,6 +347,7 @@ where
     }
 }
 
+#[inline(never)]
 fn try_execute_query<Q, Qcx>(
     qcx: Qcx,
     span: Span,