OLD | NEW |
1 ; Test if we detect if the value symbol table appears after a function block. | 1 ; Test if we detect if the value symbol table appears after a function block. |
2 | 2 |
3 ; REQUIRES: no_minimal_build | 3 ; REQUIRES: no_minimal_build |
4 | 4 |
5 ; RUN: not %pnacl_sz -bitcode-as-text %p/Inputs/symtab-after-fcn.tbc \ | 5 ; RUN: not %pnacl_sz -bitcode-as-text %p/Inputs/symtab-after-fcn.tbc \ |
6 ; RUN: -bitcode-format=pnacl -notranslate -build-on-read 2>&1 \ | 6 ; RUN: -bitcode-format=pnacl -notranslate -build-on-read 2>&1 \ |
7 ; RUN: | FileCheck %s | 7 ; RUN: | FileCheck %s |
8 | 8 |
9 ; CHECK: Module valuesymtab not allowed after function blocks | 9 ; CHECK: Module valuesymtab not allowed after function blocks |
10 | 10 |
11 ; RUN: pnacl-bcfuzz -bitcode-as-text %p/Inputs/symtab-after-fcn.tbc \ | 11 ; RUN: pnacl-bcfuzz -bitcode-as-text %p/Inputs/symtab-after-fcn.tbc \ |
12 ; RUN: -output - | pnacl-bcdis -no-records | FileCheck -check-prefix=ASM %s | 12 ; RUN: -output - | not pnacl-bcdis -no-records \ |
| 13 ; RUN: | FileCheck -check-prefix=ASM %s |
13 | 14 |
14 ; ASM: module { // BlockID = 8 | 15 ; ASM: module { // BlockID = 8 |
15 ; ASM: function void @f0() { // BlockID = 12 | 16 ; ASM: function void @f0() { // BlockID = 12 |
16 ; ASM: } | 17 ; ASM: } |
17 ; ASM: valuesymtab { // BlockID = 14 | 18 ; ASM: valuesymtab { // BlockID = 14 |
| 19 ; ASM: Error({{.*}}): Module symbol table must appear before function blocks |
18 ; ASM: } | 20 ; ASM: } |
19 ; ASM: } | 21 ; ASM: } |
OLD | NEW |