2 ## - Unknown attribute name.
3 ## - Feed integer value to string type attribute.
4 ## - Feed string value to integer type attribute.
5 ## - Invalid arch string.
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
10 .attribute unknown, "unknown"
11 # CHECK: [[@LINE-1]]:12: error: attribute name not recognised: unknown
13 .attribute arch, "foo"
14 # CHECK: [[@LINE-1]]:18: error: invalid arch name 'foo', string must begin with rv32{i,e,g} or rv64{i,e,g}
16 .attribute arch, "rv32i2p1_y2p0"
17 # CHECK: [[@LINE-1]]:18: error: invalid arch name 'rv32i2p1_y2p0', invalid standard user-level extension 'y'
19 .attribute stack_align, "16"
20 # CHECK: [[@LINE-1]]:25: error: expected numeric constant
22 .attribute unaligned_access, "0"
23 # CHECK: [[@LINE-1]]:30: error: expected numeric constant
25 .attribute priv_spec, "2"
26 # CHECK: [[@LINE-1]]:23: error: expected numeric constant
28 .attribute priv_spec_minor, "0"
29 # CHECK: [[@LINE-1]]:29: error: expected numeric constant
31 .attribute priv_spec_revision, "0"
32 # CHECK: [[@LINE-1]]:32: error: expected numeric constant
35 # CHECK: [[@LINE-1]]:18: error: expected string constant