Home | History | Annotate | Download | only in AArch64
      1 // RUN: llvm-mc < %s -triple arm64 -mattr=neon -show-encoding | FileCheck %s
      2 
      3 fcsel d28,d31,d31,nv
      4 csel x0,x0,x0,nv
      5 ccmp x0,x0,#0,nv
      6 b.nv #0
      7 
      8 // CHECK: fcsel   d28, d31, d31, nv       // encoding: [0xfc,0xff,0x7f,0x1e]
      9 // CHECK: csel    x0, x0, x0, nv          // encoding: [0x00,0xf0,0x80,0x9a]
     10 // CHECK: ccmp    x0, x0, #0, nv          // encoding: [0x00,0xf0,0x40,0xfa]
     11 // CHECK: b.nv #0                         // encoding: [0x0f,0x00,0x00,0x54]
     12