1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/test/CodeGen/SPARC/LeonCASAInstructionUT.ll
Douglas Katzman 470dbb3bce [Myriad]: set LeonCASA processor feature
llvm-svn: 281359
2016-09-13 17:51:41 +00:00

16 lines
589 B
LLVM
Executable File

; RUN: llc %s -O0 -march=sparc -mcpu=leon3 -mattr=+hasleoncasa -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=gr712rc -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=leon4 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=gr740 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=myriad2 -o - | FileCheck %s
; CHECK-LABEL: casa_test
; CHECK: casa [%o0] 10, %o3, %o2
define void @casa_test(i32* %ptr) {
%pair = cmpxchg i32* %ptr, i32 0, i32 1 monotonic monotonic
%r = extractvalue { i32, i1 } %pair, 0
%stored1 = icmp eq i32 %r, 0
ret void
}