Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: test/Transforms/NaCl/expand-varargs-emscripten.ll

Issue 1692803002: Remove Emscripten support (Closed) Base URL: https://chromium.googlesource.com/a/native_client/pnacl-llvm.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/CodeGen/JS/unrolled-simd.ll ('k') | test/Transforms/NaCl/resolve-pnacl-intrinsics-lock-free.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/Transforms/NaCl/expand-varargs-emscripten.ll
diff --git a/test/Transforms/NaCl/expand-varargs-emscripten.ll b/test/Transforms/NaCl/expand-varargs-emscripten.ll
deleted file mode 100644
index ae19c519f11f1746042deb0bda61b9cc9a9d0d46..0000000000000000000000000000000000000000
--- a/test/Transforms/NaCl/expand-varargs-emscripten.ll
+++ /dev/null
@@ -1,28 +0,0 @@
-; RUN: opt < %s -mtriple=asmjs-unknown-emscripten -expand-varargs -S | FileCheck %s
-
-target datalayout = "p:32:32:32"
-
-%va_list = type i8*
-
-declare void @llvm.va_start(i8*)
-declare void @llvm.va_end(i8*)
-declare void @llvm.va_copy(i8*, i8*)
-
-declare void @emscripten_asm_const_int(...)
-declare void @emscripten_asm_const_double(...)
-declare void @emscripten_landingpad(...)
-declare void @emscripten_resume(...)
-
-define void @test(i32 %arg) {
- call void (...) @emscripten_asm_const_int(i32 %arg)
- call void (...) @emscripten_asm_const_double(i32 %arg)
- call void (...) @emscripten_landingpad(i32 %arg)
- call void (...) @emscripten_resume(i32 %arg)
- ret void
-}
-; CHECK-LABEL: define void @test(
-; CHECK-NEXT: call void (...) @emscripten_asm_const_int(i32 %arg)
-; CHECK-NEXT: call void (...) @emscripten_asm_const_double(i32 %arg)
-; CHECK-NEXT: call void (...) @emscripten_landingpad(i32 %arg)
-; CHECK-NEXT: call void (...) @emscripten_resume(i32 %arg)
-; CHECK-NEXT: ret void
« no previous file with comments | « test/CodeGen/JS/unrolled-simd.ll ('k') | test/Transforms/NaCl/resolve-pnacl-intrinsics-lock-free.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698