builtin-stackaddress.c 456 B

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