Skip to content
  1. Jan 19, 2015
  2. Jan 18, 2015
  3. Jan 17, 2015
    • Rui Ueyama's avatar
      Update comments. · d1b00ea8
      Rui Ueyama authored
      llvm-svn: 226380
      d1b00ea8
    • Chandler Carruth's avatar
      [PM] Cleanup more warnings my refactoring exposed where now we have · bc045a5a
      Chandler Carruth authored
      unused variables in a no-asserts build.
      
      I've fixed this by putting the entire loop behind an #ifndef as it
      contains nothing other than asserts.
      
      llvm-svn: 226377
      bc045a5a
    • Chandler Carruth's avatar
      [PM] Remove a dead field. · 24fd029a
      Chandler Carruth authored
      This was dead even before I refactored how we initialized it, but my
      refactoring made it trivially dead and it is now caught by a Clang
      warning. This fixes the warning and should clean up the -Werror bot
      failures (sorry!).
      
      llvm-svn: 226376
      24fd029a
    • Chandler Carruth's avatar
      [msan] Fix a uninitialized-use bug in the template argument diffing · 6f4d3a2e
      Chandler Carruth authored
      logic.
      
      In one place we would try to check for the difference between integers
      even if we were missing one of the integers. This would eventually end
      up reading uninitialized data out of the APSInt objects. The fix is to
      short circuit the sameness test when we don't have integers on both
      sides.
      
      This fixes a test failure I was seeing with MSan. Not sure whether other
      bots were seeing it or not, but yay MSan. In particular the feature to
      very carefully track origins back through stores throughout the program
      was invaluable.
      
      llvm-svn: 226375
      6f4d3a2e
Loading