// RUN: %clang_cc1 -triple i386-apple-darwin10 -fsyntax-only -verify %s
int a ; // expected-warning{{attribute only applies to functions}}
// It doesn't matter where the attribute is located.
void ;
void ;
// Functions only have to be declared force_align_arg_pointer once.
void
// It doesn't matter which declaration has the attribute.
void ;
void
// Attribute is ignored on function pointer types.
;
typedef void ;
// Attribute is also ignored on function typedefs.
typedef void ;