xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/builtin-stackaddress.c (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 void* a(unsigned x) {
3 return __builtin_return_address(0);
4 }
5 
6 void b(unsigned x) {
7 return __builtin_return_address(x); // expected-error{{argument to '__builtin_return_address' must be a constant integer}}
8 }
9 
10 void* c(unsigned x) {
11 return __builtin_frame_address(0);
12 }
13 
14 void d(unsigned x) {
15 return __builtin_frame_address(x); // expected-error{{argument to '__builtin_frame_address' must be a constant integer}}
16 }
17