mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-28 11:38:01 +00:00 
			
		
		
		
	 84ac80f192
			
		
	
	
		84ac80f192
		
	
	
	
	
		
			
			The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
		
			
				
	
	
		
			19 lines
		
	
	
		
			657 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			657 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! Dataflow analyses are built upon some interpretation of the
 | |
| //! bitvectors attached to each basic block, represented via a
 | |
| //! zero-sized structure.
 | |
| 
 | |
| mod borrowed_locals;
 | |
| mod initialized;
 | |
| mod liveness;
 | |
| mod storage_liveness;
 | |
| 
 | |
| pub use self::borrowed_locals::{borrowed_locals, MaybeBorrowedLocals};
 | |
| pub use self::initialized::{
 | |
|     DefinitelyInitializedPlaces, EverInitializedPlaces, MaybeInitializedPlaces,
 | |
|     MaybeUninitializedPlaces,
 | |
| };
 | |
| pub use self::liveness::{
 | |
|     MaybeLiveLocals, MaybeTransitiveLiveLocals, TransferFunction as LivenessTransferFunction,
 | |
| };
 | |
| pub use self::storage_liveness::{MaybeRequiresStorage, MaybeStorageDead, MaybeStorageLive};
 |