Skip to content

Commit b5ae063

Browse files
AaronBallmanRoy Sundahl
authored andcommitted
Fix LLVM sphinx build
This addresses issues found by: https://lab.llvm.org/buildbot/#/builders/30/builds/33698 (cherry picked from commit ceacb32)
1 parent 8f56d4d commit b5ae063

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

llvm/docs/ReleaseNotes.rst

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,15 @@ Changes to Sanitizers
188188
an intended override of a weak symbol, then it must contain at least one weak
189189
symbol as well for the override to take effect.
190190

191-
Example:
192-
// Add this to make sure your override takes effect
193-
__attribute__((weak,unused)) unsigned __enableOverrides;
191+
Example:
194192

195-
// Example override
196-
extern "C" const char *__asan_default_options() { ... }
193+
.. code-block:: c
194+
195+
// Add this to make sure your override takes effect
196+
__attribute__((weak,unused)) unsigned __enableOverrides;
197+
198+
// Example override
199+
extern "C" const char *__asan_default_options() { ... }
197200
198201
199202
Other Changes

0 commit comments

Comments
 (0)