]> git.proxmox.com Git - rustc.git/blobdiff - src/librustc_back/target/x86_64_pc_windows_gnu.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / librustc_back / target / x86_64_pc_windows_gnu.rs
index e243054d0230e9ab8659ce22e31f8bc4437f3f44..086e0e6bf4fe7edc723082853fdd9e9ee71c12d7 100644 (file)
@@ -8,15 +8,15 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use target::Target;
+use target::{Target, TargetResult};
 
-pub fn target() -> Target {
+pub fn target() -> TargetResult {
     let mut base = super::windows_base::opts();
     base.cpu = "x86-64".to_string();
     base.pre_link_args.push("-m64".to_string());
     base.max_atomic_width = 64;
 
-    Target {
+    Ok(Target {
         llvm_target: "x86_64-pc-windows-gnu".to_string(),
         target_endian: "little".to_string(),
         target_pointer_width: "64".to_string(),
@@ -26,5 +26,5 @@ pub fn target() -> Target {
         target_env: "gnu".to_string(),
         target_vendor: "pc".to_string(),
         options: base,
-    }
+    })
 }