Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gcc.dg/inline-16.c @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
/* { dg-do link } */ /* { dg-options "-std=c99" } */ static inline __SIZE_TYPE__ func1(const volatile void * base, __SIZE_TYPE__ byteOffset) { volatile __SIZE_TYPE__ *addr = (volatile __SIZE_TYPE__ *)((__SIZE_TYPE__)base + byteOffset); return *addr; } static inline __SIZE_TYPE__ func2(__SIZE_TYPE__ data) { return func1(&data, 0); } int main(int argc, char *argv[]) { __SIZE_TYPE__ b = func2(argc); return 0; }