view test/MC/ARM/invalid-barrier.s @ 68:a37375f10d66

remove unnecessary comments
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Wed, 12 Feb 2014 01:06:33 +0900
parents 95c75e76d11b
children
line wrap: on
line source

@ RUN: not llvm-mc -triple=armv7   -show-encoding < %s 2>&1 | FileCheck %s
@ RUN: not llvm-mc -triple=thumbv7 -show-encoding < %s 2>&1 | FileCheck %s

@------------------------------------------------------------------------------
@ DMB
@------------------------------------------------------------------------------
        dmb #0x10
        dmb imaginary_scope

@ CHECK: error: immediate value out of range
@ CHECK: error: invalid operand for instruction

@------------------------------------------------------------------------------
@ DSB
@------------------------------------------------------------------------------
        dsb #0x10
        dsb imaginary_scope
@ CHECK: error: immediate value out of range
@ CHECK: error: invalid operand for instruction

@------------------------------------------------------------------------------
@ ISB
@------------------------------------------------------------------------------
        isb #0x1f
        isb imaginary_domain

@ CHECK: error: immediate value out of range
@ CHECK: error: invalid operand for instruction