Skip to content
  1. Aug 05, 2015
  2. Aug 04, 2015
    • Yaron Keren's avatar
      Avoid passing nullptr to std::equal. · 13631242
      Yaron Keren authored
      As documented in the LLVM Coding Standards, indeed MSVC incorrectly asserts 
      on this in Debug mode. This happens when building clang with Visual C++ and
      -triple i686-pc-windows-gnu on these clang regression tests:
      
       clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c
       clang/test/CodeGen/empty-union-init.c
      
      llvm-svn: 243996
      13631242
    • Sanjay Patel's avatar
      wrap OptSize and MinSize attributes for easier and consistent access (NFCI) · 924879ad
      Sanjay Patel authored
      Create wrapper methods in the Function class for the OptimizeForSize and MinSize
      attributes. We want to hide the logic of "or'ing" them together when optimizing
      just for size (-Os).
      
      Currently, we are not consistent about this and rely on a front-end to always set
      OptimizeForSize (-Os) if MinSize (-Oz) is on. Thus, there are 18 FIXME changes here
      that should be added as follow-on patches with regression tests.
      
      This patch is NFC-intended: it just replaces existing direct accesses of the attributes
      by the equivalent wrapper call.
      
      Differential Revision: http://reviews.llvm.org/D11734
      
      llvm-svn: 243994
      924879ad
Loading