This commit implements the function that compares array size, alignment, and element type. Test: ./test.py ; update prebuilts/clang-tools and build Bug: 255702405 Change-Id: I4f25d22f060cfda04bbd88b9c2521461b95e6829
14 lines
262 B
C
14 lines
262 B
C
struct Struct {
|
|
int array[];
|
|
};
|
|
|
|
extern "C" {
|
|
void StructMember(Struct &);
|
|
void Pointer(int *);
|
|
void DoublePointer(int *[]);
|
|
void PointerToArray(int (*)[10]);
|
|
void PointerTo2DArray(int (*)[10][10]);
|
|
void Reference(int (&)[][11]);
|
|
void Element(short (*)[2]);
|
|
}
|