about summary refs log tree commit diff
path: root/src/librustc_codegen_ssa
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2018-12-24 13:29:36 +0100
committerGitHub <noreply@github.com>2018-12-24 13:29:36 +0100
commit8b0b70d3273cd6185ec384f6f6ba01ec328b0929 (patch)
tree193eaca740105b988b9e27a715b68f8873f97bd6 /src/librustc_codegen_ssa
parentc44bb0230ea4eae5ae97766b243f910b86b6aaae (diff)
parent0c4d5511466c9ecde5a1a8fbf2bff942afe586d5 (diff)
downloadrust-8b0b70d3273cd6185ec384f6f6ba01ec328b0929.tar.gz
rust-8b0b70d3273cd6185ec384f6f6ba01ec328b0929.zip
Rollup merge of #57074 - Zoxc:pq-rec-limits, r=oli-obk
Fix recursion limits

r? @michaelwoerister
Diffstat (limited to 'src/librustc_codegen_ssa')
-rw-r--r--src/librustc_codegen_ssa/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_codegen_ssa/lib.rs b/src/librustc_codegen_ssa/lib.rs
index d0cdb8924df..43198937e3d 100644
--- a/src/librustc_codegen_ssa/lib.rs
+++ b/src/librustc_codegen_ssa/lib.rs
@@ -24,6 +24,8 @@
 #![allow(dead_code)]
 #![feature(quote)]
 
+#![recursion_limit="256"]
+
 //! This crate contains codegen code that is used by all codegen backends (LLVM and others).
 //! The backend-agnostic functions of this crate use functions defined in various traits that
 //! have to be implemented by each backends.