Skip to content

Commit

Permalink
Add category to __builtin_verbose_trap
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Jul 10, 2024
1 parent ea44fac commit 2a930de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/vendor/llvm/default_assertion_handler.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#else

# if __has_builtin(__builtin_verbose_trap)
# define _LIBCPP_ASSERTION_HANDLER(message) (__builtin_verbose_trap(message))
# define _LIBCPP_ASSERTION_HANDLER(message) __builtin_verbose_trap("libc++", message)
# else
# define _LIBCPP_ASSERTION_HANDLER(message) ((void)message, __builtin_trap())
# endif
Expand Down

0 comments on commit 2a930de

Please sign in to comment.