File tree 6 files changed +12
-0
lines changed
6 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 24
24
#![ allow( dead_code) ]
25
25
#![ feature( quote) ]
26
26
27
+ #![ recursion_limit="256" ]
28
+
27
29
//! This crate contains codegen code that is used by all codegen backends (LLVM and others).
28
30
//! The backend-agnostic functions of this crate use functions defined in various traits that
29
31
//! have to be implemented by each backends.
Original file line number Diff line number Diff line change 30
30
#![ feature( quote) ]
31
31
#![ feature( rustc_diagnostic_macros) ]
32
32
33
+ #![ recursion_limit="256" ]
34
+
33
35
#[ macro_use]
34
36
extern crate syntax;
35
37
#[ macro_use]
Original file line number Diff line number Diff line change 21
21
#![ feature( nll) ]
22
22
#![ feature( rustc_diagnostic_macros) ]
23
23
24
+ #![ recursion_limit="256" ]
25
+
24
26
#[ macro_use]
25
27
extern crate rustc;
26
28
extern crate rustc_mir;
Original file line number Diff line number Diff line change 67
67
#![ feature( nll) ]
68
68
#![ feature( rustc_diagnostic_macros) ]
69
69
70
+ #![ recursion_limit="256" ]
71
+
70
72
#[ macro_use] extern crate syntax;
71
73
72
74
extern crate rustc;
Original file line number Diff line number Diff line change 18
18
#![ feature( rustc_diagnostic_macros) ]
19
19
#![ feature( slice_sort_by_cached_key) ]
20
20
21
+ #![ recursion_limit="256" ]
22
+
21
23
#[ macro_use]
22
24
extern crate bitflags;
23
25
#[ macro_use]
Original file line number Diff line number Diff line change 24
24
#![ feature( quote) ]
25
25
#![ feature( rustc_diagnostic_macros) ]
26
26
27
+ #![ recursion_limit="256" ]
28
+
27
29
extern crate fmt_macros;
28
30
#[ macro_use]
29
31
extern crate syntax;
You can’t perform that action at this time.
0 commit comments