George Rimar | 7672eb8 | 2017-12-31 07:41:02 +0000 | [diff] [blame^] | 1 | // RUN: not llvm-mc -triple x86_64-pc-linux-gnu %s \ |
2 | // RUN: -filetype=obj -o %t.o 2>&1 | FileCheck %s | ||||
3 | |||||
4 | // Check we do not silently ignore invalid metadata symbol (123). | ||||
5 | // CHECK: error: invalid metadata symbol | ||||
6 | |||||
7 | .section .foo,"a" | ||||
8 | .quad 0 | ||||
9 | |||||
10 | .section bar,"ao",@progbits,123 |