]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_codegen_llvm/value.rs
Rollup merge of #68500 - Mark-Simulacrum:fix-bootstrap-clearing, r=alexcrichton
[rust.git] / src / librustc_codegen_llvm / value.rs
index 357cc8fbf80e8439f7b58b9b84761be42c303148..1338a229566c82ac10c8dba9add79910cc8f07ce 100644 (file)
@@ -1,30 +1,17 @@
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
+pub use crate::llvm::Value;
 
-pub use llvm::Value;
-
-use llvm;
+use crate::llvm;
 
 use std::fmt;
 use std::hash::{Hash, Hasher};
-
-pub trait ValueTrait: fmt::Debug {}
+use std::ptr;
 
 impl PartialEq for Value {
     fn eq(&self, other: &Self) -> bool {
-        self as *const _ == other as *const _
+        ptr::eq(self, other)
     }
 }
 
-impl ValueTrait for Value {}
-
 impl Eq for Value {}
 
 impl Hash for Value {
@@ -33,11 +20,13 @@ fn hash<H: Hasher>(&self, hasher: &mut H) {
     }
 }
 
-
 impl fmt::Debug for Value {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        f.write_str(&llvm::build_string(|s| unsafe {
-            llvm::LLVMRustWriteValueToString(self, s);
-        }).expect("non-UTF8 value description from LLVM"))
+    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
+        f.write_str(
+            &llvm::build_string(|s| unsafe {
+                llvm::LLVMRustWriteValueToString(self, s);
+            })
+            .expect("non-UTF8 value description from LLVM"),
+        )
     }
 }