diff options
| author | arcnmx <arcnmx@users.noreply.github.com> | 2016-01-12 13:07:04 -0500 |
|---|---|---|
| committer | arcnmx <arcnmx@users.noreply.github.com> | 2016-02-11 12:45:52 -0500 |
| commit | 32328ac6ff13cf55b61dbfcf0c79aba1b7a8f429 (patch) | |
| tree | 1c91e022953d3b4c292298f548d08144f54d7526 | |
| parent | e6f0f7d52d69d0c4f290ac32c6eebf92bbf6dd81 (diff) | |
| download | rust-32328ac6ff13cf55b61dbfcf0c79aba1b7a8f429.tar.gz rust-32328ac6ff13cf55b61dbfcf0c79aba1b7a8f429.zip | |
Remove link_section and linkage as extern indicators
| -rw-r--r-- | src/libsyntax/attr.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libsyntax/attr.rs b/src/libsyntax/attr.rs index e2654375736..c3e3042eff0 100644 --- a/src/libsyntax/attr.rs +++ b/src/libsyntax/attr.rs @@ -318,8 +318,6 @@ pub fn find_export_name_attr(diag: &Handler, attrs: &[Attribute]) -> Option<Inte pub fn contains_extern_indicator(attrs: &[Attribute]) -> bool { contains_name(attrs, "no_mangle") || - contains_name(attrs, "link_section") || - contains_name(attrs, "linkage") || contains_name(attrs, "export_name") } |
