Home | History | Annotate | Download | only in RISCV
      1 # RUN: not llvm-mc -triple riscv32 < %s 2>&1 \
      2 # RUN: | FileCheck -check-prefixes=CHECK %s
      3 
      4 # CHECK: error: unexpected token, expected identifier
      5 .option
      6 
      7 # CHECK: error: unexpected token, expected identifier
      8 .option 123
      9 
     10 # CHECK: error: unexpected token, expected identifier
     11 .option "str"
     12 
     13 # CHECK: error: unexpected token, expected end of statement
     14 .option rvc foo
     15 
     16 # CHECK: warning: unknown option, expected 'rvc' or 'norvc'
     17 .option bar
     18