File: sd.s

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,388 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (13 lines) | stat: -rw-r--r-- 549 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
# RUN: llvm-mc -filetype=obj -triple mips   -mcpu=mips1 %s -o - \
# RUN:   | llvm-objdump -d - | FileCheck %s --check-prefix=MIPS1-EB
# RUN: llvm-mc -filetype=obj -triple mipsel -mcpu=mips1 %s -o - \
# RUN:   | llvm-objdump -d - | FileCheck %s --check-prefix=MIPS1-EL

# Check if s.d instruction alias is suported on Mips1.

# MIPS1-EB:    0: e4 c1 00 00    swc1    $f1, 0($6)
# MIPS1-EB:    4: e4 c0 00 04    swc1    $f0, 4($6)

# MIPS1-EL:    0: 00 00 c0 e4    swc1    $f0, 0($6)
# MIPS1-EL:    4: 04 00 c1 e4    swc1    $f1, 4($6)
s.d $f0, 0($6)