Upgrade Emscripten targets to use upstream LLVM backend

- Refactors the Emscripten target spec to share code with other wasm
   targets.
 - Replaces the incorrect wasm32 C call ABI with the old asmjs
   version, which is correct for both wasm32 and JS.
 - Updates the varargs ABI used by Emscripten and deletes the old one.
 - Removes the obsolete wasm32-experimental-emscripten target.
 - Temporarily makes Emscripten targets use panic=abort by default
   because supporting unwinding will require an LLVM patch.
This commit is contained in:
Thomas Lively 2019-08-16 22:08:01 -07:00
parent 31d75c4e9c
commit 9a55103b98
100 changed files with 166 additions and 424 deletions

View file

@ -1,5 +1,5 @@
// run-pass
// ignore-wasm32-bare compiled with panic=abort by default
// ignore-emscripten compiled with panic=abort by default
// compile-flags: -C overflow-checks
use std::panic;