Skip to content

Commit ceacb32

Browse files
committed
Fix LLVM sphinx build
This addresses issues found by: https://lab.llvm.org/buildbot/#/builders/30/builds/33698
1 parent 78d0d59 commit ceacb32

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
@@ -247,12 +247,15 @@ Changes to Sanitizers
247247
an intended override of a weak symbol, then it must contain at least one weak
248248
symbol as well for the override to take effect.
249249

250-
Example:
251-
// Add this to make sure your override takes effect
252-
__attribute__((weak,unused)) unsigned __enableOverrides;
250+
Example:
253251

254-
// Example override
255-
extern "C" const char *__asan_default_options() { ... }
252+
.. code-block:: c
253+
254+
// Add this to make sure your override takes effect
255+
__attribute__((weak,unused)) unsigned __enableOverrides;
256+
257+
// Example override
258+
extern "C" const char *__asan_default_options() { ... }
256259
257260
Other Changes
258261
-------------

0 commit comments

Comments
 (0)