mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
e65b9a48e3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51665 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
552 B
LLVM
19 lines
552 B
LLVM
; RUN: llvm-as < %s | llc -march=x86-64
|
|
|
|
declare <2 x i64> @llvm.cttz.v2i64(<2 x i64>)
|
|
declare <2 x i64> @llvm.ctlz.v2i64(<2 x i64>)
|
|
declare <2 x i64> @llvm.ctpop.v2i64(<2 x i64>)
|
|
|
|
define <2 x i64> @footz(<2 x i64> %a) nounwind {
|
|
%c = call <2 x i64> @llvm.cttz.v2i64(<2 x i64> %a)
|
|
ret <2 x i64> %c
|
|
}
|
|
define <2 x i64> @foolz(<2 x i64> %a) nounwind {
|
|
%c = call <2 x i64> @llvm.ctlz.v2i64(<2 x i64> %a)
|
|
ret <2 x i64> %c
|
|
}
|
|
define <2 x i64> @foopop(<2 x i64> %a) nounwind {
|
|
%c = call <2 x i64> @llvm.ctpop.v2i64(<2 x i64> %a)
|
|
ret <2 x i64> %c
|
|
}
|