]> git.lizzy.rs Git - rust.git/commit
Auto merge of #36776 - alexcrichton:rustc-macro-dep-files, r=nrc
authorbors <bors@rust-lang.org>
Wed, 28 Sep 2016 03:21:12 +0000 (20:21 -0700)
committerGitHub <noreply@github.com>
Wed, 28 Sep 2016 03:21:12 +0000 (20:21 -0700)
commit755516bb96cc0f74c3098d2a64917f4e0a6f3f03
tree8068f125b99e456b83d593b753b16c9d91d23bcc
parenta059cb2f3344c0a9efae17dde3d0e16a55ce93db
parent20a71b25c0af2b27e9152911479d45f941b2a97e
Auto merge of #36776 - alexcrichton:rustc-macro-dep-files, r=nrc

rustc: Use a special filename for macros 1.1

This "special filename" is surrounded by `<>` to ensure that
`FileMap::is_real_file` returns `false`. This way the "files" parsed here aren't
emitted as dep info `.d` files and don't confuse Cargo about non-existent files.

Closes #36625