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

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

Issue 686913005: Turn off dump/emit routines when building minimal subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. 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
OLDNEW
1 ; Test of global initializers. 1 ; Test of global initializers.
2 2
3 ; REQUIRES: allow_dump
4
3 ; RUN: %p2i -i %s --insts | FileCheck %s 5 ; RUN: %p2i -i %s --insts | FileCheck %s
4 ; RUN: %l2i -i %s --insts | %ifl FileCheck %s 6 ; RUN: %l2i -i %s --insts | %ifl FileCheck %s
5 ; RUN: %lc2i -i %s --insts | %iflc FileCheck %s 7 ; RUN: %lc2i -i %s --insts | %iflc FileCheck %s
6 ; RUN: %if --need=allow_disable_ir_gen --command \ 8 ; RUN: %if --need=allow_disable_ir_gen --command \
7 ; RUN: %p2i -i %s --args -notranslate -timing -no-ir-gen \ 9 ; RUN: %p2i -i %s --args -notranslate -timing -no-ir-gen \
8 ; RUN: | %if --need=allow_disable_ir_gen --command \ 10 ; RUN: | %if --need=allow_disable_ir_gen --command \
9 ; RUN: FileCheck --check-prefix=NOIR %s 11 ; RUN: FileCheck --check-prefix=NOIR %s
10 12
11 @PrimitiveInit = internal global [4 x i8] c"\1B\00\00\00", align 4 13 @PrimitiveInit = internal global [4 x i8] c"\1B\00\00\00", align 4
12 ; CHECK: @PrimitiveInit = internal global [4 x i8] c"\1B\00\00\00", align 4 14 ; CHECK: @PrimitiveInit = internal global [4 x i8] c"\1B\00\00\00", align 4
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 ret i32 0 75 ret i32 0
74 } 76 }
75 77
76 define internal i32 @nacl_tp_tls_offset(i32 %size) { 78 define internal i32 @nacl_tp_tls_offset(i32 %size) {
77 entry: 79 entry:
78 %result = sub i32 0, %size 80 %result = sub i32 0, %size
79 ret i32 %result 81 ret i32 %result
80 } 82 }
81 83
82 ; NOIR: Total across all functions 84 ; NOIR: Total across all functions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698