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

Side by Side Diff: tests_lit/llvm2ice_tests/uncond_br.ll

Issue 2433243003: Subzero, MIPS32: Remove --skip-unimplemented from lit tests (Closed)
Patch Set: Reverted --skip-unimplemented in nacl-other-intrinsics.ll Created 4 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/switch-opt.ll ('k') | tests_lit/llvm2ice_tests/unreachable.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 ; TODO(rkotler): Stop skipping unimplemented parts (via --skip-unimplemented) 1 ; TODO: Switch to --filetype=obj when possible.
2 ; once enough infrastructure is in. Also, switch to --filetype=obj
3 ; when possible.
4 ; RUN: %if --need=target_MIPS32 --need=allow_dump \ 2 ; RUN: %if --need=target_MIPS32 --need=allow_dump \
5 ; RUN: --command %p2i --filetype=asm --assemble \ 3 ; RUN: --command %p2i --filetype=asm --assemble \
6 ; RUN: --disassemble --target mips32 -i %s --args -O2 --skip-unimplemented \ 4 ; RUN: --disassemble --target mips32 -i %s --args -O2 \
7 ; RUN: -allow-externally-defined-symbols \ 5 ; RUN: -allow-externally-defined-symbols \
8 ; RUN: | %if --need=target_MIPS32 --need=allow_dump \ 6 ; RUN: | %if --need=target_MIPS32 --need=allow_dump \
9 ; RUN: --command FileCheck --check-prefix MIPS32 %s 7 ; RUN: --command FileCheck --check-prefix MIPS32 %s
10 8
11 define internal void @uncond1(i32 %i) { 9 define internal void @uncond1(i32 %i) {
12 %1 = alloca i8, i32 4, align 4 10 %1 = alloca i8, i32 4, align 4
13 %.bc = bitcast i8* %1 to i32* 11 %.bc = bitcast i8* %1 to i32*
14 store i32 %i, i32* %.bc, align 1 12 store i32 %i, i32* %.bc, align 1
15 br label %target 13 br label %target
16 target: 14 target:
17 %.bc1 = bitcast i8* %1 to i32* 15 %.bc1 = bitcast i8* %1 to i32*
18 %2 = load i32, i32* %.bc1, align 1 16 %2 = load i32, i32* %.bc1, align 1
19 %3 = add i32 %2, 1 17 %3 = add i32 %2, 1
20 %.bc2 = bitcast i8* %1 to i32* 18 %.bc2 = bitcast i8* %1 to i32*
21 store i32 %3, i32* %.bc2, align 1 19 store i32 %3, i32* %.bc2, align 1
22 br label %target 20 br label %target
23 } 21 }
24 22
25 ; MIPS32-LABEL: uncond1 23 ; MIPS32-LABEL: uncond1
26 ; MIPS32: <.Luncond1$target>: 24 ; MIPS32: <.Luncond1$target>:
27 ; MIPS32: li 25 ; MIPS32: li
28 ; MIPS32: addu 26 ; MIPS32: addu
29 ; MIPS32: b {{[0-9a-f]+}} <.Luncond1$target> 27 ; MIPS32: b {{[0-9a-f]+}} <.Luncond1$target>
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/switch-opt.ll ('k') | tests_lit/llvm2ice_tests/unreachable.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698