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

Unified Diff: test/CodeGen/JS/expand-insertextract.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/expand-i64.ll ('k') | test/CodeGen/JS/expect-intrinsics.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/CodeGen/JS/expand-insertextract.ll
diff --git a/test/CodeGen/JS/expand-insertextract.ll b/test/CodeGen/JS/expand-insertextract.ll
deleted file mode 100644
index 8dca6394b88d6beb0dab4d9a32dfcccbf94bc518..0000000000000000000000000000000000000000
--- a/test/CodeGen/JS/expand-insertextract.ll
+++ /dev/null
@@ -1,31 +0,0 @@
-; RUN: llc < %s | FileCheck %s
-
-target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-p:32:32:32-v128:32:128-n32-S128"
-target triple = "asmjs-unknown-emscripten"
-
-; CHECK: sp = STACKTOP;
-; CHECK: STACKTOP = STACKTOP + 16|0;
-; CHECK: $0 = sp;
-; CHECK: SIMD_float32x4_store(HEAPU8, $0, $p);
-; CHECK: $1 = (($0) + ($i<<2)|0);
-; CHECK: $2 = +HEAPF32[$1>>2];
-; CHECK: STACKTOP = sp;return (+$2);
-; CHECK: }
-define float @ext(<4 x float> %p, i32 %i) {
- %f = extractelement <4 x float> %p, i32 %i
- ret float %f
-}
-
-; CHECK: sp = STACKTOP;
-; CHECK: STACKTOP = STACKTOP + 16|0;
-; CHECK: $0 = sp;
-; CHECK: SIMD_float32x4_store(HEAPU8, $0, $p);
-; CHECK: $1 = (($0) + ($i<<2)|0);
-; CHECK: HEAPF32[$1>>2] = $f;
-; CHECK: $2 = SIMD_float32x4_load(HEAPU8, $0);
-; CHECK: STACKTOP = sp;return (SIMD_float32x4_check($2));
-; CHECK: }
-define <4 x float> @ins(<4 x float> %p, float %f, i32 %i) {
- %v = insertelement <4 x float> %p, float %f, i32 %i
- ret <4 x float> %v
-}
« no previous file with comments | « test/CodeGen/JS/expand-i64.ll ('k') | test/CodeGen/JS/expect-intrinsics.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698