Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.19-rc3 12 lines 264 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#define _GNU_SOURCE /* Required for inline xstate helpers */ 4#include "xstate.h" 5 6int main(void) 7{ 8 test_xstate(XFEATURE_YMM); 9 test_xstate(XFEATURE_OPMASK); 10 test_xstate(XFEATURE_ZMM_Hi256); 11 test_xstate(XFEATURE_Hi16_ZMM); 12}