about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-12-14 00:17:52 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-12-19 12:23:56 -0500
commit3ae912ac5df770cb5d5ee2a7d021fb1f967c6091 (patch)
treea00b5b41b152de07591c00c3d35dadb174073c80
parentd5ff75aca13d6c1d7230e324d3629e0fc1717a5b (diff)
fix tidy
-rw-r--r--src/librustc_llvm/build.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs
index 657cb0ece06..9caacfe266d 100644
--- a/src/librustc_llvm/build.rs
+++ b/src/librustc_llvm/build.rs
@@ -95,7 +95,8 @@ fn main() {
     let is_crossed = target != host;
 
     let optional_components =
-        ["x86", "arm", "aarch64", "mips", "powerpc", "pnacl", "systemz", "jsbackend", "msp430", "sparc"];
+        ["x86", "arm", "aarch64", "mips", "powerpc", "pnacl", "systemz", "jsbackend", "msp430",
+         "sparc"];
 
     // FIXME: surely we don't need all these components, right? Stuff like mcjit
     //        or interpreter the compiler itself never uses.