mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
17 lines
430 B
C
17 lines
430 B
C
|
// RUN: %llvmgcc -S -emit-llvm -O1 %s -o - | grep ret | grep {\\-1} | count 1
|
||
|
// RUN: %llvmgcc -S -emit-llvm -O1 %s -o - | grep ret | grep {0} | count 1
|
||
|
// RUN: %llvmgcc -S -emit-llvm -O1 %s -o - | grep ret | grep {8} | count 1
|
||
|
|
||
|
unsigned t1(void *d) {
|
||
|
return __builtin_object_size(d, 0);
|
||
|
}
|
||
|
|
||
|
unsigned t2(void *d) {
|
||
|
return __builtin_object_size(d, 2);
|
||
|
}
|
||
|
|
||
|
char buf[8];
|
||
|
unsigned t3() {
|
||
|
return __builtin_object_size(buf, 0);
|
||
|
}
|