Skip to content
  1. Oct 26, 2017
    • Jonathan Peyton's avatar
      Fix fatal error message displaying · 5e6cb902
      Jonathan Peyton authored
      Replacing call to __kmp_msg(kmp_ms_fatal,...) with __kmp_fatal(...) caused an
      issue when incomplete message is displayed in case an error message is followed
      by another message (e.g. by a hint messa)ge. This is because __kmp_fatal()
      passes incomplete list of arguments to __kmp_msg().
      
      Patch by Olga Malysheva
      
      Differential Revision: https://reviews.llvm.org/D39248
      
      llvm-svn: 316623
      5e6cb902
    • Rui Ueyama's avatar
      Unassign sections if they are "assigned" to /DISCARD/. · 8e38ea8b
      Rui Ueyama authored
      "/DISCARD/" is a special section name in the linker script to discard
      input sections. Previously, we handled it as if it were a real section,
      so an input section can be assigned but dead. However, allowing sections
      to be
      
       - assigned and alive (will be emitted),
       - not assigned and dead (removed), or
       - assigned but dead (???)
      
      feels logically wrong and practically error-prone. This patch removes
      the last combination of the states.
      
      llvm-svn: 316622
      8e38ea8b
    • Alex Lorenz's avatar
      Handle PragmaDebug in PPChainedCallbacks · fbd17e17
      Alex Lorenz authored
      The test is in clang-tools-extra/test/pp-trace
      
      llvm-svn: 316621
      fbd17e17
    • Kostya Kortchinsky's avatar
      [scudo] Remove comment about security of the 32-bit allocator · f9008a3a
      Kostya Kortchinsky authored
      Summary:
      The 32-bit allocator is now on par with the 64-bit in terms of security (chunks
      randomization is done, batches separation is done).
      
      Unless objection, the comment can go away.
      
      Reviewers: alekseyshl
      
      Reviewed By: alekseyshl
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D39303
      
      llvm-svn: 316620
      f9008a3a
  2. Oct 25, 2017
Loading