1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/CodeGen/Hexagon/isel-vacopy.ll
Krzysztof Parzyszek a3ffcf4b0f [Hexagon] Handle VACOPY in isel lowering
llvm-svn: 326599
2018-03-02 18:35:57 +00:00

19 lines
385 B
LLVM

; RUN: llc -march=hexagon < %s | FileCheck %s
; Check for successful compilation
; CHECK: jumpr r31
target triple = "hexagon"
; Function Attrs: nounwind
define hidden fastcc void @f0() unnamed_addr #0 {
b0:
call void @llvm.va_copy(i8* nonnull undef, i8* nonnull undef)
ret void
}
; Function Attrs: nounwind
declare void @llvm.va_copy(i8*, i8*) #0
attributes #0 = { nounwind }