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

Side by Side Diff: tests_lit/reader_tests/unnamed.ll

Issue 1522433004: eliminate code related to --no-ir-gen (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: changes suggested by stichnot Created 5 years 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 ; Tests that we name unnamed global addresses. 1 ; Tests that we name unnamed global addresses.
2 2
3 ; Check that Subzero's bitcode reader handles renaming correctly. 3 ; Check that Subzero's bitcode reader handles renaming correctly.
4 ; RUN: %p2i --no-local-syms -i %s --insts | FileCheck %s 4 ; RUN: %p2i --no-local-syms -i %s --insts | FileCheck %s
5 ; RUN: %l2i --no-local-syms -i %s --insts | %ifl FileCheck %s 5 ; RUN: %l2i --no-local-syms -i %s --insts | %ifl FileCheck %s
6 6
7 ; RUN: %l2i --no-local-syms -i %s --insts --args --exit-success \ 7 ; RUN: %l2i --no-local-syms -i %s --insts --args --exit-success \
8 ; RUN: -default-function-prefix=h -default-global-prefix=g \ 8 ; RUN: -default-function-prefix=h -default-global-prefix=g \
9 ; RUN: | %ifl FileCheck --check-prefix=BAD %s 9 ; RUN: | %ifl FileCheck --check-prefix=BAD %s
10 10
11 ; RUN: %p2i --no-local-syms -i %s --insts --args --exit-success \ 11 ; RUN: %p2i --no-local-syms -i %s --insts --args --exit-success \
12 ; RUN: -default-function-prefix=h -default-global-prefix=g \ 12 ; RUN: -default-function-prefix=h -default-global-prefix=g \
13 ; RUN: | FileCheck --check-prefix=BAD %s 13 ; RUN: | FileCheck --check-prefix=BAD %s
14 14
15 ; RUN: %if --need=allow_disable_ir_gen --command \ 15 ; RUN: %if --need=allow_disable_ir_gen --command \
16 ; RUN: %p2i -i %s --args -notranslate -timing -no-ir-gen \ 16 ; RUN: %p2i -i %s --args -notranslate -timing \
17 ; RUN: | %if --need=allow_disable_ir_gen --command \ 17 ; RUN: | %if --need=allow_disable_ir_gen --command \
18 ; RUN: FileCheck --check-prefix=NOIR %s 18 ; RUN: FileCheck --check-prefix=NOIR %s
19 19
20 ; TODO(kschimpf) Check global variable declarations, once generated. 20 ; TODO(kschimpf) Check global variable declarations, once generated.
21 21
22 @0 = internal global [4 x i8] zeroinitializer, align 4 22 @0 = internal global [4 x i8] zeroinitializer, align 4
23 @1 = internal constant [10 x i8] c"Some stuff", align 1 23 @1 = internal constant [10 x i8] c"Some stuff", align 1
24 @g = internal global [4 x i8] zeroinitializer, align 4 24 @g = internal global [4 x i8] zeroinitializer, align 4
25 25
26 define internal i32 @2(i32 %v) { 26 define internal i32 @2(i32 %v) {
(...skipping 30 matching lines...) Expand all
57 57
58 ; CHECK-NEXT: define internal void @h5() { 58 ; CHECK-NEXT: define internal void @h5() {
59 ; CHECK-NEXT: __0: 59 ; CHECK-NEXT: __0:
60 ; CHECK-NEXT: ret void 60 ; CHECK-NEXT: ret void
61 ; CHECK-NEXT: } 61 ; CHECK-NEXT: }
62 62
63 ; BAD: Warning : Default global prefix 'g' potentially conflicts with name 'g'. 63 ; BAD: Warning : Default global prefix 'g' potentially conflicts with name 'g'.
64 ; BAD: Warning : Default function prefix 'h' potentially conflicts with name 'h5 '. 64 ; BAD: Warning : Default function prefix 'h' potentially conflicts with name 'h5 '.
65 65
66 ; NOIR: Total across all functions 66 ; NOIR: Total across all functions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698