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

Side by Side Diff: test/NaCl/Bitcode/pnacl-bcdis/ret.ll

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 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 unified diff | Download patch
« no previous file with comments | « test/NaCl/Bitcode/pnacl-bcdis/phi.ll ('k') | test/NaCl/Bitcode/pnacl-bcdis/select.ll » ('j') | 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 return instructions for various types.
2
3 ; RUN: llvm-as < %s | pnacl-freeze | pnacl-bccompress --remove-abbreviations \
4 ; RUN: | pnacl-bcdis | FileCheck %s
5
6 define internal void @fvoid() {
7 ret void
8
9 ; CHECK: | | %b0:
10 ; CHECK-NEXT: {{.*}}| 3: <10> | ret void;
11
12 }
13
14 define internal i32 @fi32(i32 %p0) {
15 ret i32 %p0
16
17 ; CHECK: | | %b0:
18 ; CHECK: {{.*}}| 3: <10, 1> | ret i32 %p0;
19
20 }
21
22
23 define internal i64 @fi64(i64 %p0) {
24 ret i64 %p0
25
26 ; CHECK: | | %b0:
27 ; CHECK: {{.*}}| 3: <10, 1> | ret i64 %p0;
28
29 }
30
31 define internal float @ffloat(float %p0) {
32 ret float %p0
33
34 ; CHECK: | | %b0:
35 ; CHECK: {{.*}}| 3: <10, 1> | ret float %p0;
36
37 }
38
39
40 define internal double @fdouble(double %p0) {
41 ret double %p0
42
43 ; CHECK: | | %b0:
44 ; CHECK: {{.*}}| 3: <10, 1> | ret double %p0;
45
46 }
47
48 define internal <4 x i32> @fi32vec(<4 x i32> %p0) {
49 ret <4 x i32> %p0
50
51 ; CHECK: | | %b0:
52 ; CHECK-NEXT: {{.*}}| 3: <10, 1> | ret <4 x i32> %p0;
53
54 }
55
OLDNEW
« no previous file with comments | « test/NaCl/Bitcode/pnacl-bcdis/phi.ll ('k') | test/NaCl/Bitcode/pnacl-bcdis/select.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698