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

Side by Side Diff: tests_lit/llvm2ice_tests/struct-arith.pnacl.ll

Issue 659513005: Allow conditional lit tests in Subzero, based on build flags. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add -Wno-error=unused-parameter Created 6 years, 1 month 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 | « tests_lit/llvm2ice_tests/phi.ll ('k') | tests_lit/reader_tests/binops.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; This test is lowered from C code that does some simple aritmetic 1 ; This test is lowered from C code that does some simple aritmetic
2 ; with struct members. 2 ; with struct members.
3 3
4 ; TODO(kschimpf) Find out why lc2i is needed. 4 ; TODO(kschimpf) Find out why lc2i is needed.
5 ; REQUIRES: allow_llvm_ir_as_input
5 ; RUN: %lc2i -i %s --args --verbose inst | FileCheck %s 6 ; RUN: %lc2i -i %s --args --verbose inst | FileCheck %s
6 ; RUN: %lc2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s 7 ; RUN: %lc2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s
7 8
8 define internal i32 @compute_important_function(i32 %v1, i32 %v2) { 9 define internal i32 @compute_important_function(i32 %v1, i32 %v2) {
9 entry: 10 entry:
10 %__2 = inttoptr i32 %v1 to i32* 11 %__2 = inttoptr i32 %v1 to i32*
11 %_v0 = load i32* %__2, align 1 12 %_v0 = load i32* %__2, align 1
12 13
13 ; CHECK: entry: 14 ; CHECK: entry:
14 ; CHECK-NEXT: %__2 = i32 %v1 15 ; CHECK-NEXT: %__2 = i32 %v1
(...skipping 28 matching lines...) Expand all
43 %add = sub i32 %add4.neg, %_v3 44 %add = sub i32 %add4.neg, %_v3
44 %sub = sub i32 %add, %mul3 45 %sub = sub i32 %add, %mul3
45 %sub12 = sub i32 %sub, %mul11 46 %sub12 = sub i32 %sub, %mul11
46 ret i32 %sub12 47 ret i32 %sub12
47 48
48 ; CHECK: %sub12 = sub i32 %sub, %mul11 49 ; CHECK: %sub12 = sub i32 %sub, %mul11
49 ; CHECK-NEXT: ret i32 %sub12 50 ; CHECK-NEXT: ret i32 %sub12
50 } 51 }
51 52
52 ; ERRORS-NOT: ICE translation error 53 ; ERRORS-NOT: ICE translation error
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/phi.ll ('k') | tests_lit/reader_tests/binops.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698