diff options
| author | Denis Merigoux <denis.merigoux@gmail.com> | 2018-08-07 17:14:40 +0200 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2018-11-16 14:11:09 +0200 |
| commit | 34c5dc045f2ee53b3bc8e5cece75e6ece96389e6 (patch) | |
| tree | 9c536bb2727ff84a356346f37163b395099603ff /src/librustc_codegen_llvm/lib.rs | |
| parent | 83b2152ce40ed4f1340ed541236609511fc7e89c (diff) | |
| download | rust-34c5dc045f2ee53b3bc8e5cece75e6ece96389e6.tar.gz rust-34c5dc045f2ee53b3bc8e5cece75e6ece96389e6.zip | |
Generalized base.rs#call_memcpy and everything that it uses
Generalized operand.rs#nontemporal_store and fixed tidy issues Generalized operand.rs#nontemporal_store's implem even more With a BuilderMethod trait implemented by Builder for LLVM Cleaned builder.rs : no more code duplication, no more ValueTrait Full traitification of builder.rs
Diffstat (limited to 'src/librustc_codegen_llvm/lib.rs')
| -rw-r--r-- | src/librustc_codegen_llvm/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_codegen_llvm/lib.rs b/src/librustc_codegen_llvm/lib.rs index d4cd2f786f8..1baab9b0c4d 100644 --- a/src/librustc_codegen_llvm/lib.rs +++ b/src/librustc_codegen_llvm/lib.rs @@ -102,6 +102,8 @@ mod back { pub mod wasm; } +mod traits; + mod abi; mod allocator; mod asm; |
