brintos

brintos / llvm-project-archived public Read only

0
0
Text · 441 B · 03beb76 Raw
7 lines · plain
1; RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/start.s -o %t.o2; RUN: not wasm-ld -o %t.wasm --relocatable --export-table %t.o 2>&1 | FileCheck %s --check-prefix=EXPORT3; RUN: not wasm-ld -o %t.wasm --relocatable --growable-table %t.o 2>&1 | FileCheck %s --check-prefix=GROWABLE4 5; EXPORT: error: --relocatable is incompatible with --export-table6; GROWABLE: error: --relocatable is incompatible with --growable-table7