1
2#define __noclone	__attribute__((__noclone__, __optimize__("no-tracer")))
3
4struct kvm_vcpu;
5
6static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
7{
8	__asm__("");
9}
10
11extern void *run;
12void *run = vmx_vcpu_run;
13
14/*
15 * check-name: optimize attributes
16 */
17