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

Side by Side Diff: tests_lit/llvm2ice_tests/global.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/ebp_args.ll ('k') | tests_lit/llvm2ice_tests/globalrelocs.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 ; Trivial test of the use of internal versus external global 1 ; Trivial test of the use of internal versus external global
2 ; variables. 2 ; variables.
3 3
4 ; TODO(kschimpf) find out why lc2i is needed. 4 ; TODO(kschimpf) find out why lc2i is needed.
5 ; RUN: %lc2i -i %s --args --verbose inst | FileCheck %s 5 ; REQUIRES: allow_llvm_ir_as_input
6 ; RUN: %lc2i -i %s --args --verbose inst | %iflc 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 ; Note: PNaCl ABI Doesn't allow external globals. Hence, not tested. 9 ; Note: PNaCl ABI Doesn't allow external globals. Hence, not tested.
9 @intern_global = internal global [4 x i8] c"\00\00\00\0C", align 4 10 @intern_global = internal global [4 x i8] c"\00\00\00\0C", align 4
10 11
11 define i32 @test_intern_global() { 12 define i32 @test_intern_global() {
12 ; CHECK: define i32 @test_intern_global 13 ; CHECK: define i32 @test_intern_global
13 entry: 14 entry:
14 %__1 = bitcast [4 x i8]* @intern_global to i32* 15 %__1 = bitcast [4 x i8]* @intern_global to i32*
15 %v0 = load i32* %__1, align 1 16 %v0 = load i32* %__1, align 1
16 ret i32 %v0 17 ret i32 %v0
17 } 18 }
18 19
19 ; ERRORS-NOT: ICE translation error 20 ; ERRORS-NOT: ICE translation error
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/ebp_args.ll ('k') | tests_lit/llvm2ice_tests/globalrelocs.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698