~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/MC/AArch64/neon-scalar-add-sub.s

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+neon -show-encoding < %s | FileCheck %s
 
2
 
 
3
//------------------------------------------------------------------------------
 
4
// Scalar Integer Add
 
5
//------------------------------------------------------------------------------
 
6
         add d31, d0, d16
 
7
 
 
8
// CHECK: add d31, d0, d16       // encoding: [0x1f,0x84,0xf0,0x5e]
 
9
 
 
10
//------------------------------------------------------------------------------
 
11
// Scalar Integer Sub
 
12
//------------------------------------------------------------------------------
 
13
         sub d1, d7, d8
 
14
 
 
15
// CHECK: sub d1, d7, d8       // encoding: [0xe1,0x84,0xe8,0x7e]
 
16