blob: ae37cbd2511581ce6388e5df81525182a0a29b14 [file] [log] [blame]
// RUN: %llvmgcc -xc %s -S -o /dev/null 2>&1 | not grep 'warning'
struct item {
short delta[4];
};
int TEST(int nt) {
register struct item *aa;
aa[nt].delta;
return 1;
}