mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
5ea7edc062
Summary: It outputs nothing, but is useful for writing tests, checking asm output. Reviewers: t.p.northover, ostannard, tellenbach Reviewed By: tellenbach Subscribers: tellenbach, kristof.beyls, hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D69185 Change-Id: I6b58310e9e5632f0976d2000ce975ee28df90ebe
17 lines
526 B
LLVM
17 lines
526 B
LLVM
; RUN: llc -mtriple aarch64 %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple aarch64 -filetype=obj %s -o - | llvm-objdump --arch=aarch64 -d - | FileCheck %s --check-prefix=DUMP
|
|
|
|
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
|
|
|
|
define dso_local void @f(i64 %v) {
|
|
entry:
|
|
%dummy = tail call i64 @llvm.aarch64.space(i32 32684, i64 %v)
|
|
ret void
|
|
}
|
|
; CHECK: // SPACE
|
|
; CHECK-NEXT: ret
|
|
; DUMP-LABEL: f:
|
|
; DUMP-NEXT: ret
|
|
|
|
declare dso_local i64 @llvm.aarch64.space(i32, i64) local_unnamed_addr #0
|