[WinEH] Remove unused intrinsic llvm.x86.seh.restoreframe
[oota-llvm.git] / test / MC / ARM / inst-directive-emit.s
1 @ RUN: llvm-mc %s -triple armv7-linux-gnueabi -filetype asm -o - | FileCheck %s
2
3         .syntax unified
4         .thumb
5
6         .align 2
7         .global emit_asm
8         .type emit_asm,%function
9 emit_asm:
10         .inst.w 0xf2400000, 0xf2c00000
11
12 @ CHECK:        .text
13 @ CHECK:        .code   16
14 @ CHECK:        .align  2
15 @ CHECK:        .globl  emit_asm
16 @ CHECK:        .type   emit_asm,%function
17 @ CHECK: emit_asm:
18 @ CHECK:        inst.w 0xf2400000
19 @ CHECK:        inst.w 0xf2c00000
20