blob: 9b8fcd576db5d9d189c5972f85213346e23d4fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
; RUN: not llc -filetype=obj %s -o /dev/null 2>&1 | FileCheck %s
; CHECK: error: couldn't allocate input reg for constraint '{d2}'
; CHECK-NEXT: error: couldn't allocate input reg for constraint '{s2}'
target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64"
target triple = "armv8a-unknown-linux-gnueabihf"
@a = local_unnamed_addr global i32 0, align 4
define void @_Z1bv() local_unnamed_addr {
entry:
%0 = load i32, ptr @a, align 4
%conv = sext i32 %0 to i64
tail call void asm sideeffect "", "{d2}"(i64 %conv)
ret void
}
define void @_Z1cv() local_unnamed_addr {
entry:
%0 = load i32, ptr @a, align 4
%conv = sext i32 %0 to i64
tail call void asm sideeffect "", "{s2}"(i64 %conv)
ret void
}
|