aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/arm64/fp/rdvl-sme.c
blob: 49b0b2e08bacd6fd9eaa81ba766a9072aad4887a (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_sme();

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

	return 0;
}