about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-03-07 03:32:01 +0900
committerYuki Okushi <huyuumi.dev@gmail.com>2020-03-07 03:32:01 +0900
commit18080e60728401c9bd4d102bbb33a0d6d53740f6 (patch)
treec091be5d22673f12a90fdb34a1c778d273b25065
parent45a30cdf1d2109655ff02683b6a6e41255cbeebe (diff)
downloadrust-18080e60728401c9bd4d102bbb33a0d6d53740f6.tar.gz
rust-18080e60728401c9bd4d102bbb33a0d6d53740f6.zip
Remove `NO_DEBUG` const
-rw-r--r--src/librustc/middle/codegen_fn_attrs.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustc/middle/codegen_fn_attrs.rs b/src/librustc/middle/codegen_fn_attrs.rs
index 82adcfddc28..61b25cc4864 100644
--- a/src/librustc/middle/codegen_fn_attrs.rs
+++ b/src/librustc/middle/codegen_fn_attrs.rs
@@ -58,9 +58,6 @@ bitflags! {
         /// "weird symbol" for the standard library in that it has slightly
         /// different linkage, visibility, and reachability rules.
         const RUSTC_STD_INTERNAL_SYMBOL = 1 << 6;
-        /// `#[no_debug]`: an indicator that no debugging information should be
-        /// generated for this function by LLVM.
-        const NO_DEBUG                  = 1 << 7;
         /// `#[thread_local]`: indicates a static is actually a thread local
         /// piece of memory
         const THREAD_LOCAL              = 1 << 8;