1## Negative tests: 2## - Unknown attribute name. 3## - Feed integer value to string type attribute. 4## - Feed string value to integer type attribute. 5## - Invalid arch string. 6 7# RUN: not llvm-mc %s -triple=riscv32 -filetype=asm 2>&1 | FileCheck %s 8# RUN: not llvm-mc %s -triple=riscv64 -filetype=asm 2>&1 | FileCheck %s 9 10.attribute unknown, "unknown" 11# CHECK: [[@LINE-1]]:12: error: attribute name not recognised: unknown 12 13.attribute arch, "foo" 14# CHECK: [[@LINE-1]]:18: error: invalid arch name 'foo', string must begin with rv32{i,e,g}, rv64{i,e,g}, or a supported profile name{{$}} 15 16.attribute arch, "rv32i2p1_y2p0" 17# CHECK: [[@LINE-1]]:18: error: invalid arch name 'rv32i2p1_y2p0', invalid standard user-level extension 'y' 18 19.attribute stack_align, "16" 20# CHECK: [[@LINE-1]]:25: error: expected numeric constant 21 22.attribute unaligned_access, "0" 23# CHECK: [[@LINE-1]]:30: error: expected numeric constant 24 25.attribute priv_spec, "2" 26# CHECK: [[@LINE-1]]:23: error: expected numeric constant 27 28.attribute priv_spec_minor, "0" 29# CHECK: [[@LINE-1]]:29: error: expected numeric constant 30 31.attribute priv_spec_revision, "0" 32# CHECK: [[@LINE-1]]:32: error: expected numeric constant 33 34.attribute arch, 30 35# CHECK: [[@LINE-1]]:18: error: expected string constant 36 37.attribute atomic_abi, "16" 38# CHECK: [[@LINE-1]]:24: error: expected numeric constant 39