
Revert most of #133194 (except the test and the comment fixes). Then refix not emitting locations at all when the correct location discriminator value exceeds LLVM's capacity.
7 lines
189 B
Rust
7 lines
189 B
Rust
extern crate proc_macro;
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro]
|
|
pub fn declare_big_function(_input: TokenStream) -> TokenStream {
|
|
include_str!("./generated.rs").parse().unwrap()
|
|
}
|