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

Side by Side Diff: tests_lit/reader_tests/phi.ll

Issue 568473002: Add phi instruction to Subzero bitcode reader. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues raised in patch set 2. Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « src/PNaClTranslator.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ; Test reading phi instructions.
2
3 ; RUN: llvm-as < %s | pnacl-freeze -allow-local-symbol-tables \
4 ; RUN: | %llvm2ice -notranslate -verbose=inst -build-on-read \
5 ; RUN: -allow-pnacl-reader-error-recovery \
6 ; RUN: -allow-local-symbol-tables \
7 ; RUN: | FileCheck %s
8
9 ; TODO(kschimpf) Add forward reference examples.
10
11 define internal i32 @testPhi1(i32 %arg) {
12 entry:
13 %cmp1 = icmp sgt i32 %arg, 0
14 br i1 %cmp1, label %next, label %target
15 next:
16 br label %target
17 target:
18 %merge = phi i1 [ %cmp1, %entry ], [ false, %next ]
19 %result = zext i1 %merge to i32
20 ret i32 %result
21 }
22
23 ; CHECK: define internal i32 @testPhi1(i32 %arg) {
24 ; CHECK-NEXT: entry:
25 ; CHECK-NEXT: %cmp1 = icmp sgt i32 %arg, 0
26 ; CHECK-NEXT: br i1 %cmp1, label %next, label %target
27 ; CHECK-NEXT: next:
28 ; CHECK-NEXT: br label %target
29 ; CHECK-NEXT: target:
30 ; CHECK-NEXT: %merge = phi i1 [ %cmp1, %entry ], [ false, %next ]
31 ; CHECK-NEXT: %result = zext i1 %merge to i32
32 ; CHECK-NEXT: ret i32 %result
33 ; CHECK-NEXT: }
34
OLDNEW
« no previous file with comments | « src/PNaClTranslator.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698