39 lines · plain
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 %s8# RUN: not llvm-mc %s -triple=riscv64 -filetype=asm 2>&1 | FileCheck %s9 10.attribute unknown, "unknown"11# CHECK: [[@LINE-1]]:12: error: attribute name not recognised: unknown12 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 constant21 22.attribute unaligned_access, "0"23# CHECK: [[@LINE-1]]:30: error: expected numeric constant24 25.attribute priv_spec, "2"26# CHECK: [[@LINE-1]]:23: error: expected numeric constant27 28.attribute priv_spec_minor, "0"29# CHECK: [[@LINE-1]]:29: error: expected numeric constant30 31.attribute priv_spec_revision, "0"32# CHECK: [[@LINE-1]]:32: error: expected numeric constant33 34.attribute arch, 3035# CHECK: [[@LINE-1]]:18: error: expected string constant36 37.attribute atomic_abi, "16"38# CHECK: [[@LINE-1]]:24: error: expected numeric constant39