rust/src
Oliver Scherer 9245ba8304 Remove the const_raw_ptr_comparison feature gate.
We can never supply a meaningful implementation of this.
Instead, the follow up commits will create two intrinsics
that approximate comparisons:

* `ptr_maybe_eq`
* `ptr_maybe_ne`

The fact that `ptr_maybe_eq(a, b)` is not necessarily the same
value as `!ptr_maybe_ne(a, b)` is a symptom of this entire
problem.
2020-06-19 18:13:41 +02:00
..
bootstrap Rollup merge of #73352 - ehuss:bootstrap-metadata, r=Mark-Simulacrum 2020-06-19 14:29:35 +02:00
build_helper
ci removed try config to test mac & windows (passed) 2020-06-17 14:50:28 -07:00
doc
etc
liballoc Rollup merge of #73479 - pickfire:liballoc-spell, r=dtolnay 2020-06-19 08:56:19 +02:00
libcore Rollup merge of #73054 - RalfJung:dont-panic, r=Mark-Simulacrum 2020-06-19 14:29:24 +02:00
libpanic_abort
libpanic_unwind
libproc_macro
libprofiler_builtins
librustc_apfloat
librustc_arena Rollup merge of #73237 - tmiasko:arena, r=nnethercote 2020-06-16 15:08:35 +02:00
librustc_ast Fix typo in librustc_ast docs 2020-06-16 18:11:47 -07:00
librustc_ast_lowering
librustc_ast_passes
librustc_ast_pretty
librustc_attr
librustc_builtin_macros
librustc_codegen_llvm Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_codegen_ssa Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_data_structures
librustc_driver
librustc_error_codes Rollup merge of #73280 - GuillaumeGomez:add-e0763, r=petrochenkov 2020-06-19 14:29:29 +02:00
librustc_errors
librustc_expand
librustc_feature Remove the const_raw_ptr_comparison feature gate. 2020-06-19 18:13:41 +02:00
librustc_fs_util
librustc_graphviz
librustc_hir Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_hir_pretty
librustc_incremental
librustc_index
librustc_infer Rollup merge of #72804 - estebank:opaque-missing-lts-in-fn-2, r=nikomatsakis 2020-06-18 15:20:43 -07:00
librustc_interface
librustc_lexer
librustc_lint Rollup merge of #72497 - RalfJung:tag-term, r=oli-obk 2020-06-19 08:56:02 +02:00
librustc_llvm
librustc_macros
librustc_metadata Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_middle Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_mir Remove the const_raw_ptr_comparison feature gate. 2020-06-19 18:13:41 +02:00
librustc_mir_build Auto merge of #73486 - Manishearth:rollup-11iyqpc, r=Manishearth 2020-06-19 01:20:49 +00:00
librustc_parse Rollup merge of #73280 - GuillaumeGomez:add-e0763, r=petrochenkov 2020-06-19 14:29:29 +02:00
librustc_parse_format
librustc_passes Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_plugin_impl
librustc_privacy
librustc_query_system
librustc_resolve Rollup merge of #73320 - estebank:type-param-sugg-more, r=davidtwco 2020-06-18 15:20:55 -07:00
librustc_save_analysis
librustc_serialize
librustc_session Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_span Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
librustc_symbol_mangling
librustc_target Rollup merge of #72497 - RalfJung:tag-term, r=oli-obk 2020-06-19 08:56:02 +02:00
librustc_trait_selection Rollup merge of #71338 - estebank:recursive-impl-trait, r=nikomatsakis 2020-06-18 15:20:33 -07:00
librustc_traits
librustc_ty
librustc_typeck Remove the const_raw_ptr_comparison feature gate. 2020-06-19 18:13:41 +02:00
librustdoc Rollup merge of #73476 - JakobDegen:should_panic_rustdoc, r=GuillaumeGomez 2020-06-18 15:21:04 -07:00
libstd Rollup merge of #73464 - qy3u:fs-document-format-correction, r=jonas-schievink 2020-06-19 08:56:17 +02:00
libterm
libtest
libunwind
llvm-project@0ddefeca92
rtstartup
rustc
rustllvm Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandry 2020-06-19 14:29:20 +02:00
stdarch@45340c0e2f
test Remove the const_raw_ptr_comparison feature gate. 2020-06-19 18:13:41 +02:00
tools Rollup merge of #73044 - tmiasko:compiletest-san, r=nikomatsakis 2020-06-19 14:29:22 +02:00
README.md
stage0.txt

This directory contains the source code of the rust project, including:

  • rustc and its tests
  • libstd
  • Various submodules for tools, like rustdoc, rls, etc.

For more information on how various parts of the compiler work, see the rustc dev guide.