mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
011cf09ddd
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33369 91177308-0d34-0410-b5e6-96231b3b80d8
37 lines
880 B
C
37 lines
880 B
C
// RUN: %llvmgcc -S %s -o - /dev/null 2>&1 > /dev/null | \
|
|
// RUN: not grep warning
|
|
// XFAIL: *
|
|
|
|
#define ATTR_BITS(N) __attribute__((bitwidth(N)))
|
|
|
|
typedef int ATTR_BITS( 4) My04BitInt;
|
|
typedef int ATTR_BITS(16) My16BitInt;
|
|
typedef int ATTR_BITS(17) My17BitInt;
|
|
typedef int ATTR_BITS(37) My37BitInt;
|
|
typedef int ATTR_BITS(65) My65BitInt;
|
|
|
|
struct MyStruct {
|
|
My04BitInt i4Field;
|
|
short ATTR_BITS(12) i12Field;
|
|
long ATTR_BITS(17) i17Field;
|
|
My37BitInt i37Field;
|
|
};
|
|
|
|
My37BitInt doit( short ATTR_BITS(23) num) {
|
|
My17BitInt i;
|
|
struct MyStruct strct;
|
|
int bitsize1 = sizeof(My17BitInt);
|
|
int __attribute__((bitwidth(9))) j;
|
|
int bitsize2 = sizeof(j);
|
|
int result = bitsize1 + bitsize2;
|
|
strct.i17Field = result;
|
|
result += sizeof(struct MyStruct);
|
|
return result;
|
|
}
|
|
|
|
int
|
|
main ( int argc, char** argv)
|
|
{
|
|
return (int ATTR_BITS(32)) doit((short ATTR_BITS(23))argc);
|
|
}
|