rust/src/librustc_target
Julien Cretin b8106b59d2 Fix meta-variable binding errors in macros
The errors are either:
- The meta-variable used in the right-hand side is not bound (or defined) in the
  left-hand side.
- The meta-variable used in the right-hand side does not repeat with the same
  kleene operator as its binder in the left-hand side. Either it does not repeat
  enough, or it uses a different operator somewhere.

This change should have no semantic impact.
2019-06-23 01:30:41 +02:00
..
abi Change ... to ..= where applicable 2019-06-14 12:24:38 -05:00
spec Fix meta-variable binding errors in macros 2019-06-23 01:30:41 +02:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Add to_symbol methods. 2019-05-27 14:05:02 +10:00
lib.rs rustc_target: deny(unused_lifetimes). 2019-06-11 14:11:58 +03:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00

librustc_target contains some very low-level details that are specific to different compilation targets and so forth.

For more information about how rustc works, see the rustc guide.