Mercurial > hg > CbC > CbC_llvm
comparison test/MC/SystemZ/insn-ld-01.s @ 3:9ad51c7bc036
1st commit. remove git dir and add all files.
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 15 May 2013 06:43:32 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 3:9ad51c7bc036 |
---|---|
1 # RUN: llvm-mc -triple s390x-linux-gnu -show-encoding %s | FileCheck %s | |
2 | |
3 #CHECK: ld %f0, 0 # encoding: [0x68,0x00,0x00,0x00] | |
4 #CHECK: ld %f0, 4095 # encoding: [0x68,0x00,0x0f,0xff] | |
5 #CHECK: ld %f0, 0(%r1) # encoding: [0x68,0x00,0x10,0x00] | |
6 #CHECK: ld %f0, 0(%r15) # encoding: [0x68,0x00,0xf0,0x00] | |
7 #CHECK: ld %f0, 4095(%r1,%r15) # encoding: [0x68,0x01,0xff,0xff] | |
8 #CHECK: ld %f0, 4095(%r15,%r1) # encoding: [0x68,0x0f,0x1f,0xff] | |
9 #CHECK: ld %f15, 0 # encoding: [0x68,0xf0,0x00,0x00] | |
10 | |
11 ld %f0, 0 | |
12 ld %f0, 4095 | |
13 ld %f0, 0(%r1) | |
14 ld %f0, 0(%r15) | |
15 ld %f0, 4095(%r1,%r15) | |
16 ld %f0, 4095(%r15,%r1) | |
17 ld %f15, 0 |