You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
356 B
22 lines
356 B
4 months ago
|
// RUN: llvm-mc -triple=powerpc64-pc-linux %s -o - | FileCheck %s
|
||
|
|
||
|
NUMBER = 0x6ffffff9
|
||
|
|
||
|
.text
|
||
|
.globl main
|
||
|
main:
|
||
|
cmpwi 8,(NUMBER)@l
|
||
|
cmpwi 8,-(NUMBER)@l
|
||
|
cmpwi 8,(-NUMBER)@l
|
||
|
cmpwi 8,NUMBER@l
|
||
|
cmpwi 8,-NUMBER@l
|
||
|
|
||
|
|
||
|
// CHECK: main:
|
||
|
// CHECK: cmpwi 8, -7
|
||
|
// CHECK: cmpwi 8, 7
|
||
|
// CHECK: cmpwi 8, 7
|
||
|
// CHECK: cmpwi 8, -7
|
||
|
// CHECK: cmpwi 8, 7
|
||
|
|