Clang Project

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