2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2020-02-26 04:42:49 +08:00
|
|
|
|
2020-02-25 06:33:39 +08:00
|
|
|
void* a(unsigned x) {
|
2008-05-20 16:23:37 +08:00
|
|
|
return __builtin_return_address(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void b(unsigned x) {
|
2010-04-20 02:23:02 +08:00
|
|
|
return __builtin_return_address(x); // expected-error{{argument to '__builtin_return_address' must be a constant integer}}
|
2008-05-20 16:23:37 +08:00
|
|
|
}
|
|
|
|
|
2008-05-20 16:27:04 +08:00
|
|
|
void* c(unsigned x) {
|
2020-02-26 04:42:49 +08:00
|
|
|
// expected-error@+1 {{argument value 4294967295 is outside the valid range [0, 65535]}}
|
|
|
|
return __builtin_return_address(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* d(unsigned x) {
|
|
|
|
// expected-error@+1 {{argument value 1048575 is outside the valid range [0, 65535]}}
|
|
|
|
return __builtin_return_address(0xFFFFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* e(unsigned x) {
|
2008-05-20 16:23:37 +08:00
|
|
|
return __builtin_frame_address(0);
|
|
|
|
}
|
|
|
|
|
2020-02-26 04:42:49 +08:00
|
|
|
void f(unsigned x) {
|
|
|
|
// expected-error@+1 {{argument to '__builtin_frame_address' must be a constant integer}}
|
|
|
|
return __builtin_frame_address(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* g(unsigned x) {
|
|
|
|
// expected-error@+1 {{argument value 4294967295 is outside the valid range [0, 65535]}}
|
|
|
|
return __builtin_frame_address(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* h(unsigned x) {
|
|
|
|
// expected-error@+1 {{argument value 1048575 is outside the valid range [0, 65535]}}
|
|
|
|
return __builtin_frame_address(0xFFFFF);
|
2008-05-20 16:23:37 +08:00
|
|
|
}
|