mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 11:35:51 -04:00

Summary: This patch implements the source location builtins `__builtin_LINE(), `__builtin_FUNCTION()`, `__builtin_FILE()` and `__builtin_COLUMN()`. These builtins are needed to implement [`std::experimental::source_location`](https://rawgit.com/cplusplus/fundamentals-ts/v2/main.html#reflection.src_loc.creation). With the exception of `__builtin_COLUMN`, GCC also implements these builtins, and Clangs behavior is intended to match as closely as possible. Reviewers: rsmith, joerg, aaron.ballman, bogner, majnemer, shafik, martong Reviewed By: rsmith Subscribers: rnkovacs, loskutov, riccibruno, mgorny, kunitoki, alexr, majnemer, hfinkel, cfe-commits Differential Revision: https://reviews.llvm.org/D37035 llvm-svn: 360937
33 lines
966 B
C
33 lines
966 B
C
// RUN: %clang_cc1 -std=c90 -fconst-strings -DCONST_STRINGS -verify %s
|
|
// RUN: %clang_cc1 -std=c90 -verify %s
|
|
|
|
// expected-no-diagnostics
|
|
|
|
#define IsEqual(L, R) (__builtin_strcmp(L, R) == 0)
|
|
|
|
const char *const FILE = __builtin_FILE();
|
|
const char *const FUNC = __builtin_FUNCTION();
|
|
const unsigned LINE = __builtin_LINE();
|
|
const unsigned COL = __builtin_COLUMN();
|
|
|
|
#ifndef CONST_STRINGS
|
|
char *const NCFILE = __builtin_FILE();
|
|
char *const NCFUNC = __builtin_FUNCTION();
|
|
#endif
|
|
|
|
#ifdef CONST_STRINGS
|
|
_Static_assert(IsEqual(__builtin_FILE(), __FILE__), "");
|
|
_Static_assert(__builtin_LINE() == __LINE__, "");
|
|
_Static_assert(IsEqual("", __builtin_FUNCTION()), "");
|
|
|
|
#line 42 "my_file.c"
|
|
_Static_assert(__builtin_LINE() == 42, "");
|
|
_Static_assert(IsEqual(__builtin_FILE(), "my_file.c"), "");
|
|
|
|
_Static_assert(__builtin_COLUMN() == __builtin_strlen("_Static_assert(_"), "");
|
|
|
|
void foo() {
|
|
_Static_assert(IsEqual(__builtin_FUNCTION(), "foo"), "");
|
|
}
|
|
#endif // CONST_STRINGS
|