handle pragma with variable before variable declaration

Hi All
I’m working on clang pragma processing, and I’m wondering how does clang handle the case below:

#pragma XXX a
int a[10];

Regards

Jun