Skip to content
  1. Jan 07, 2014
  2. Jan 06, 2014
  3. Jan 05, 2014
    • Daniel Jasper's avatar
      clang-format: Spacing inside enum braces. · 1a148b49
      Daniel Jasper authored
      Before (in Google style):
        enum ShortEnum {A, B, C};
      
      After:
        enum ShortEnum { A, B, C };
      
      llvm-svn: 198559
      1a148b49
    • Daniel Jasper's avatar
      clang-format: Allow formatting short enums on a single line. · 9697281e
      Daniel Jasper authored
      Before:
        enum ShortEnum {
          A,
          B,
          C
        };
      
      After:
        enum ShortEnum { A, B, C };
      
      This seems to be the predominant choice in LLVM/Clang as well as in
      Google style.
      
      llvm-svn: 198558
      9697281e
    • Alp Toker's avatar
      Fix 'declartion' typos · 8db6e7a9
      Alp Toker authored
      llvm-svn: 198549
      8db6e7a9
    • Alp Toker's avatar
      Pre-declare '::type_info' in MicrosoftMode only, not MicrosoftExt · ab1b1dce
      Alp Toker authored
      It was previously enabled in both but should only have been part of the drop-in
      quirks mode that is 'MicrosoftMode' given that it's only useful for
      compatibility with the Microsoft headers/runtime.
      
      llvm-svn: 198548
      ab1b1dce
    • Alp Toker's avatar
      Tweak the parse recovery in r198540 · c090ae76
      Alp Toker authored
      Cover a hypothetical case when we might not have reached the final argument
      declaration for some reason during recovery, and split out for readability.
      
      llvm-svn: 198542
      c090ae76
    • Alp Toker's avatar
      Fix bungled parse recovery in K&R function declarations · eec8101b
      Alp Toker authored
        void knrNoSemi(i) int i { }
      
      Adherents of The C Programming Language unfortunate enough to miss a semicolon
      as above would be met with a cascade of errors spanning the remainder of the
      TU.
      
      This patch introduces a beautiful parse error recovery, complete with helpful
      FixIt to restore sanity.
      
      Before (output redacted for brevity):
      
        error: 'error' diagnostics seen but not expected:
          File declarators.c Line 119: declaration does not declare a parameter
          File declarators.c Line 123: declaration does not declare a parameter
          File declarators.c Line 127: parameter named 'func_E12' is missing
          File declarators.c Line 127: expected ';' at end of declaration
          File declarators.c Line 133: parameter named 'func_E13' is missing
          File declarators.c Line 133: expected ';' at end of declaration
          File declarators.c Line 139: parameter named 'func_E14' is missing
          File declarators.c Line 139: expected ';' at end of declaration
          File declarators.c Line 145: parameter named 'func_E15' is missing
          File declarators.c Line 145: expected ';' at end of declaration
          File declarators.c Line 150: expected function body after function declarator
          File declarators.c Line 119: declaration of 'enum E11' will not be visible outside of this function
          File declarators.c Line 123: declaration of 'enum E12' will not be visible outside of this function
          File declarators.c Line 133: ISO C forbids forward references to 'enum' types
          File declarators.c Line 133: declaration of 'enum E13' will not be visible outside of this function
          File declarators.c Line 139: ISO C forbids forward references to 'enum' types
          File declarators.c Line 139: declaration of 'enum E14' will not be visible outside of this function
          File declarators.c Line 145: ISO C forbids forward references to 'enum' types
          File declarators.c Line 145: declaration of 'enum E15' will not be visible outside of this function
          ...
      
      After:
      
        declarators.c:103:24: error: expected ';' at end of declaration
        void knrNoSemi(i) int i { }
                               ^
                               ;
      
      Patch found in a sealed envelope dated 1978 with the message "Do not open until
      January 2014"
      
      llvm-svn: 198540
      eec8101b
    • Alp Toker's avatar
      Parse: Token consumption modernization and loop de-nesting · 094e521e
      Alp Toker authored
      Cleanup only.
      
      llvm-svn: 198539
      094e521e
  4. Jan 04, 2014
    • Alp Toker's avatar
      Move MS predefined type_info out of InitializePredefinedMacros · e1fab526
      Alp Toker authored
      Instead of keeping it in amongst the macros, build the declaration at Sema init
      the same way we do with other predeclared and builtin types.
      
      In practice this means the declaration is marked implicit and therefore won't
      show up as an unwanted user-declared type in tooling which has been a
      frequently reported issue (though I haven't been able to cook up a test).
      
      llvm-svn: 198497
      e1fab526
    • Alp Toker's avatar
      Only mark dump() function definitions 'used' in debug builds · ef6b007d
      Alp Toker authored
      This has the dual effect of (1) enabling more dead-stripping in release builds
      and (2) ensuring that debug helper functions aren't stripped away in debug
      builds, as they're intended to be called from the debugger.
      
      Note that the attribute is applied to definitions rather than declarations in
      headers going forward because it's now conditional on NDEBUG:
      
        /// \brief Mark debug helper function definitions like dump() that should not be
        /// stripped from debug builds.
      
      Requires corresponding macro added in LLVM r198456.
      
      llvm-svn: 198489
      ef6b007d
    • Ted Kremenek's avatar
      [analyzer] Remove IdempotentOperations checker. · 77640928
      Ted Kremenek authored
      This checker has not been updated to work with interprocedural analysis,
      and actually contains both logical correctness issues but also
      memory bugs.  We can resuscitate it from version control once there
      is focused interest in making it a real viable checker again.
      
      llvm-svn: 198476
      77640928
    • Argyrios Kyrtzidis's avatar
      [Sema] When checking if a bitcast is appropriate between vector types, take into · eb68f6a9
      Argyrios Kyrtzidis authored
      consideration the num-of-elements*width-of-element width.
      
      Disallow casts when such width is not equal between the vector types otherwise
      we may end up with an invalid LLVM bitcast.
      
      rdar://15722308.
      
      llvm-svn: 198474
      eb68f6a9
    • Richard Trieu's avatar
      Ignore qualified templated functions for -Winfinite-recursion. This treats · 658eb68e
      Richard Trieu authored
      functions like Foo<5>::run() the same way as run<5>() for this warning.
      
      llvm-svn: 198470
      658eb68e
    • Reid Kleckner's avatar
      [ms-cxxabi] Improve vbtable name mangling accuracy · 5f080941
      Reid Kleckner authored
      Summary:
      This makes us more compatible with MSVC 2012+ and fixes PR17748 where we
      would give two tables the same name.
      
      Rather than doing a fresh depth-first traversal of the inheritance graph
      for every record's vbtables, now we memoize vbtable paths for each
      record.  By doing memoization, we end up considering virtual bases of
      subobjects that come later in the depth-first traversal.  Where
      previously we would have ignored a virtual base that we'd already seen,
      we now consider it for name mangling purposes without emitting a
      duplicate vbtable for it.
      
      Reviewers: majnemer
      
      CC: cfe-commits
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D2509
      
      llvm-svn: 198462
      5f080941
    • Adrian Prantl's avatar
      Debug info: Ensure that the last stop point in a function is still within · 96e70d91
      Adrian Prantl authored
      the lexical block formed by the compound statement that is the function
      body.
      
      rdar://problem/15010825
      
      llvm-svn: 198461
      96e70d91
  5. Jan 03, 2014
Loading