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/bug9049.ll
Krzysztof Parzyszek 66abdd815e [Hexagon] Add more lit tests
llvm-svn: 327271
2018-03-12 14:01:28 +00:00

21 lines
470 B
LLVM

; RUN: llc -march=hexagon -O0 < %s | FileCheck %s
target triple = "hexagon-unknown-linux-gnu"
; Function Attrs: nounwind
define void @f0() #0 {
b0:
%v0 = alloca i32, align 4
%v1 = bitcast i32* %v0 to i64*
%v2 = load i64, i64* %v1, align 8
; CHECK: call f1
%v3 = call i32 @f1(i64 %v2)
unreachable
}
; Function Attrs: inlinehint nounwind
declare i32 @f1(i64) #1
attributes #0 = { nounwind "target-cpu"="hexagonv55" }
attributes #1 = { inlinehint nounwind }