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

Unified Diff: test/CodeGen/JS/phi.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/mem-intrinsics.ll ('k') | test/CodeGen/JS/simd-fcmp.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/CodeGen/JS/phi.ll
diff --git a/test/CodeGen/JS/phi.ll b/test/CodeGen/JS/phi.ll
deleted file mode 100644
index cef01ce2f4d237cb74d41fb56985dee29039b504..0000000000000000000000000000000000000000
--- a/test/CodeGen/JS/phi.ll
+++ /dev/null
@@ -1,25 +0,0 @@
-; RUN: llc < %s | FileCheck %s
-
-; Phi lowering should check for dependency cycles, including looking through
-; bitcasts, and emit extra copies as needed.
-
-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: while(1) {
-; CHECK: $k$phi = $j;$j$phi = $k;$k = $k$phi;$j = $j$phi;
-; CHECK: }
-define void @foo(float* nocapture %p, i32* %j.init, i32* %k.init) {
-entry:
- br label %for.body
-
-for.body:
- %j = phi i32* [ %j.init, %entry ], [ %k.cast, %more ]
- %k = phi i32* [ %k.init, %entry ], [ %j.cast, %more ]
- br label %more
-
-more:
- %j.cast = bitcast i32* %j to i32*
- %k.cast = bitcast i32* %k to i32*
- br label %for.body
-}
« no previous file with comments | « test/CodeGen/JS/mem-intrinsics.ll ('k') | test/CodeGen/JS/simd-fcmp.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698