@@ -1823,10 +1823,10 @@ pub mod tls {
1823
1823
use rustc_data_structures:: thin_vec:: ThinVec ;
1824
1824
use dep_graph:: TaskDeps ;
1825
1825
1826
- #[ cfg( not( parallel_queries ) ) ]
1826
+ #[ cfg( not( parallel_compiler ) ) ]
1827
1827
use std:: cell:: Cell ;
1828
1828
1829
- #[ cfg( parallel_queries ) ]
1829
+ #[ cfg( parallel_compiler ) ]
1830
1830
use rayon_core;
1831
1831
1832
1832
/// This is the implicit state of rustc. It contains the current
@@ -1859,28 +1859,28 @@ pub mod tls {
1859
1859
/// Sets Rayon's thread local variable which is preserved for Rayon jobs
1860
1860
/// to `value` during the call to `f`. It is restored to its previous value after.
1861
1861
/// This is used to set the pointer to the new ImplicitCtxt.
1862
- #[ cfg( parallel_queries ) ]
1862
+ #[ cfg( parallel_compiler ) ]
1863
1863
#[ inline]
1864
1864
fn set_tlv < F : FnOnce ( ) -> R , R > ( value : usize , f : F ) -> R {
1865
1865
rayon_core:: tlv:: with ( value, f)
1866
1866
}
1867
1867
1868
1868
/// Gets Rayon's thread local variable which is preserved for Rayon jobs.
1869
1869
/// This is used to get the pointer to the current ImplicitCtxt.
1870
- #[ cfg( parallel_queries ) ]
1870
+ #[ cfg( parallel_compiler ) ]
1871
1871
#[ inline]
1872
1872
fn get_tlv ( ) -> usize {
1873
1873
rayon_core:: tlv:: get ( )
1874
1874
}
1875
1875
1876
1876
/// A thread local variable which stores a pointer to the current ImplicitCtxt
1877
- #[ cfg( not( parallel_queries ) ) ]
1877
+ #[ cfg( not( parallel_compiler ) ) ]
1878
1878
thread_local ! ( static TLV : Cell <usize > = Cell :: new( 0 ) ) ;
1879
1879
1880
1880
/// Sets TLV to `value` during the call to `f`.
1881
1881
/// It is restored to its previous value after.
1882
1882
/// This is used to set the pointer to the new ImplicitCtxt.
1883
- #[ cfg( not( parallel_queries ) ) ]
1883
+ #[ cfg( not( parallel_compiler ) ) ]
1884
1884
#[ inline]
1885
1885
fn set_tlv < F : FnOnce ( ) -> R , R > ( value : usize , f : F ) -> R {
1886
1886
let old = get_tlv ( ) ;
@@ -1890,7 +1890,7 @@ pub mod tls {
1890
1890
}
1891
1891
1892
1892
/// This is used to get the pointer to the current ImplicitCtxt.
1893
- #[ cfg( not( parallel_queries ) ) ]
1893
+ #[ cfg( not( parallel_compiler ) ) ]
1894
1894
fn get_tlv ( ) -> usize {
1895
1895
TLV . with ( |tlv| tlv. get ( ) )
1896
1896
}
0 commit comments