blob: 5f63bb114624f401dd4fafd65bc31d17bc94a7f1 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Eli Friedman6cfda232008-05-20 08:23:37 +00002void* a(unsigned x) {
3return __builtin_return_address(0);
4}
5
6void b(unsigned x) {
Eric Christopher5e896552010-04-19 18:23:02 +00007return __builtin_return_address(x); // expected-error{{argument to '__builtin_return_address' must be a constant integer}}
Eli Friedman6cfda232008-05-20 08:23:37 +00008}
9
Eli Friedmane590a842008-05-20 08:27:04 +000010void* c(unsigned x) {
Eli Friedman6cfda232008-05-20 08:23:37 +000011return __builtin_frame_address(0);
12}
13
Eli Friedmane590a842008-05-20 08:27:04 +000014void d(unsigned x) {
Eric Christopher5e896552010-04-19 18:23:02 +000015return __builtin_frame_address(x); // expected-error{{argument to '__builtin_frame_address' must be a constant integer}}
Eli Friedman6cfda232008-05-20 08:23:37 +000016}