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

Side by Side Diff: tests_lit/llvm2ice_tests/globalinit.pnacl.ll

Issue 609813003: Remove broken szdiff tests. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 6 years, 2 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 | « tests_lit/llvm2ice_tests/global.ll ('k') | tests_lit/llvm2ice_tests/load.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 ; Test of global initializers. 1 ; Test of global initializers.
2 2
3 ; RUN: %p2i -i %s --args --verbose inst | FileCheck %s 3 ; RUN: %p2i -i %s --args --verbose inst | FileCheck %s
4 ; RUN: %p2i -i %s --args --verbose none \ 4 ; RUN: %p2i -i %s --args --verbose none \
5 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj 5 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj
6 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s 6 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s
7 ; TODO(kschimpf) Find out why lc2i is needed.
8 ; RUN: %lc2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s
9 7
10 @PrimitiveInit = internal global [4 x i8] c"\1B\00\00\00", align 4 8 @PrimitiveInit = internal global [4 x i8] c"\1B\00\00\00", align 4
11 ; CHECK: .data 9 ; CHECK: .data
12 ; CHECK-NEXT: .local 10 ; CHECK-NEXT: .local
13 ; CHECK-NEXT: .align 4 11 ; CHECK-NEXT: .align 4
14 ; CHECK-NEXT: PrimitiveInit: 12 ; CHECK-NEXT: PrimitiveInit:
15 ; CHECK-NEXT: .byte 13 ; CHECK-NEXT: .byte
16 ; CHECK: .size PrimitiveInit, 4 14 ; CHECK: .size PrimitiveInit, 4
17 15
18 @PrimitiveInitConst = internal constant [4 x i8] c"\0D\00\00\00", align 4 16 @PrimitiveInitConst = internal constant [4 x i8] c"\0D\00\00\00", align 4
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 ret i32 0 121 ret i32 0
124 } 122 }
125 123
126 define internal i32 @nacl_tp_tls_offset(i32 %size) { 124 define internal i32 @nacl_tp_tls_offset(i32 %size) {
127 entry: 125 entry:
128 %result = sub i32 0, %size 126 %result = sub i32 0, %size
129 ret i32 %result 127 ret i32 %result
130 } 128 }
131 129
132 ; ERRORS-NOT: ICE translation error 130 ; ERRORS-NOT: ICE translation error
133 ; DUMP-NOT: SZ
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/global.ll ('k') | tests_lit/llvm2ice_tests/load.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698