aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/arm64/fp/rdvl-sve.c
blob: 7f8a13a18f5d577c44a2489167d3349ee9062de0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0-only

#include <stdio.h>

#include "rdvl.h"

int main(void)
{
	int vl = rdvl_sve();

	printf("%d\n", vl);

	return 0;
}