diff options
author | Kristina Brooks <notstina@gmail.com> | 2019-06-05 03:47:02 +0000 |
---|---|---|
committer | Kristina Brooks <notstina@gmail.com> | 2019-06-05 03:47:02 +0000 |
commit | c0eb8a982538c2c5db234ebc1c30f4c9b40587de (patch) | |
tree | 4a5a026dfb7cef4d3c6f67fcde785f3d7663785f /clang/docs | |
parent | 516e6cc1dd946de52288159d24a87df0c3dbdebb (diff) | |
download | bcm5719-llvm-c0eb8a982538c2c5db234ebc1c30f4c9b40587de.tar.gz bcm5719-llvm-c0eb8a982538c2c5db234ebc1c30f4c9b40587de.zip |
Add __FILE_NAME__ to ReleaseNotes. NFC
Added it under C language changes as a nonstandard
extension for the time being.
llvm-svn: 362581
Diffstat (limited to 'clang/docs')
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 29c900d5232..e13bec1fa2d 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -101,9 +101,11 @@ Windows Support C Language Changes in Clang --------------------------- -- ... +- ``__FILE_NAME__`` macro has been added as a Clang specific extension supported + in all C-family languages. This macro is similar to ``__FILE__`` except it + will always provide the last path component when possible. -... +- ... C11 Feature Support ^^^^^^^^^^^^^^^^^^^ |