about summary refs log tree commit diff
path: root/src/librustc/hir
diff options
context:
space:
mode:
authorWesley Wiser <wwiser@gmail.com>2018-02-26 21:14:55 -0500
committerWesley Wiser <wwiser@gmail.com>2018-03-06 20:18:51 -0500
commit39f9d23b656d5fc5bfaf8cc8b85dceb1e8b91b99 (patch)
tree1da89503511b6bc22c659bef5acb9fed316ea73e /src/librustc/hir
parent6bc7f41955c7583eca76c77fb45e51e3431cc89e (diff)
downloadrust-39f9d23b656d5fc5bfaf8cc8b85dceb1e8b91b99.tar.gz
rust-39f9d23b656d5fc5bfaf8cc8b85dceb1e8b91b99.zip
Add flag for rustc_std_internal_symbol attribute
Part of #47320
Diffstat (limited to 'src/librustc/hir')
-rw-r--r--src/librustc/hir/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc/hir/mod.rs b/src/librustc/hir/mod.rs
index e9bada5a147..69f43bc293d 100644
--- a/src/librustc/hir/mod.rs
+++ b/src/librustc/hir/mod.rs
@@ -2228,6 +2228,7 @@ bitflags! {
         const RUSTC_ALLOCATOR_NOUNWIND  = 0b0000_1000;
         const NAKED                     = 0b0001_0000;
         const NO_MANGLE                 = 0b0010_0000;
+        const RUSTC_STD_INTERNAL_SYMBOL = 0b0100_0000;
     }
 }