blob: 34626f97ff0357a46e82e9dedb9352dda5fcb86d [file] [log] [blame]
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00001@ RUN: not llvm-mc %s -triple armv7-linux-gnueabi -filetype asm -o - 2>&1 \
2@ RUN: | FileCheck -check-prefix CHECK-ERROR %s
3
4 .syntax unified
5 .thumb
6
7 .align 2
8 .global constant_overflow
9 .type constant_overflow,%function
10constant_overflow:
11 .inst.n 1 << 31
12@ CHECK-ERROR: inst.n operand is too big, use inst.w instead
13