diff options
| author | Seo Sanghyeon <sanxiyn@gmail.com> | 2017-01-10 20:27:40 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-10 20:27:40 +0900 |
| commit | 4d3d2c73970c9842f1a0570963b0a4d1753ae3a9 (patch) | |
| tree | 96724e6208c8ecca57797e7ae46b1cafc9ed50e7 | |
| parent | 314926127344c14eaf87ae2f4792077c952b163a (diff) | |
| parent | 51b655e58f334ba96d8bfb7057f7ffa3d4c40667 (diff) | |
| download | rust-4d3d2c73970c9842f1a0570963b0a4d1753ae3a9.tar.gz rust-4d3d2c73970c9842f1a0570963b0a4d1753ae3a9.zip | |
Rollup merge of #38623 - alexcrichton:less-osx-warnings, r=aturon
std: Remove unused objects from compiler-builtins We don't actually use trampoline_setup.c and all the `*tf3` business seems related to f80/f128 business. Specifically this'll fix some warnings showing up during builds on OSX.
| -rw-r--r-- | src/libcompiler_builtins/build.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libcompiler_builtins/build.rs b/src/libcompiler_builtins/build.rs index 44aa08e2458..6a766fc02df 100644 --- a/src/libcompiler_builtins/build.rs +++ b/src/libcompiler_builtins/build.rs @@ -192,14 +192,12 @@ fn main() { if !target.contains("ios") { sources.extend(&["absvti2.c", - "addtf3.c", "addvti3.c", "ashlti3.c", "ashrti3.c", "clzti2.c", "cmpti2.c", "ctzti2.c", - "divtf3.c", "divti3.c", "ffsti2.c", "fixdfti.c", @@ -216,17 +214,13 @@ fn main() { "floatuntixf.c", "lshrti3.c", "modti3.c", - "multf3.c", "multi3.c", "mulvti3.c", "negti2.c", "negvti2.c", "parityti2.c", "popcountti2.c", - "powitf2.c", - "subtf3.c", "subvti3.c", - "trampoline_setup.c", "ucmpti2.c", "udivmodti4.c", "udivti3.c", |
