Skip to content
  1. Nov 27, 2012
  2. Nov 26, 2012
    • Chad Rosier's avatar
      Remove the X86 Maximal Stack Alignment Check pass as it is no longer necessary. · 4179e3f5
      Chad Rosier authored
      This pass was conservative in that it always reserved the FP to enable dynamic
      stack realignment, which allowed the RA to use aligned spills for vector
      registers.  This happens even when spills were not necessary.  The RA has 
      since been improved to use unaligned spills when necessary.
      
      The new behavior is to realign the stack if the frame pointer was already
      reserved for some other reason, but don't reserve the frame pointer just
      because a function contains vector virtual registers.
      
      Part of rdar://12719844
      
      llvm-svn: 168627
      4179e3f5
    • Michael Han's avatar
      Improve diagnostic on C++11 attribute specifiers that appear at wrong... · 9407e50b
      Michael Han authored
      Improve diagnostic on C++11 attribute specifiers that appear at wrong syntactic locations around class specifiers.
      
      This change list implemented logic that explicitly detects several combinations of locations where C++11 attribute
      specifiers might be incorrectly placed within a class specifier. Previously we emit generic diagnostics like 
      "expected identifier" for such cases; now we emit specific diagnostic against the misplaced attributes, this also 
      fixed a bug in old code where attributes appear at legitimate locations were incorrectly rejected.
      
      Thanks to Richard Smith for reviewing!
      
      llvm-svn: 168626
      9407e50b
    • Nick Kledzik's avatar
    • Sebastian Pop's avatar
      fix typo · 7cf3104b
      Sebastian Pop authored
      Caught while compiling polly without cloog:
      
      ../tools/polly/lib/RegisterPasses.cpp:77: error: use of enum 'CodegenChoice' without previous declaration
      
      llvm-svn: 168624
      7cf3104b
    • Sebastian Pop's avatar
      remove dependence on CLOOG_FOUND for PollyVectorizerChoice · 98b35447
      Sebastian Pop authored
      When polly was configured with cmake without cloog, compilation stopped with:
      
      ../tools/polly/lib/CodeGen/BlockGenerators.cpp:662: error: 'PollyVectorizerChoice' was not declared in this scope
      ../tools/polly/lib/CodeGen/BlockGenerators.cpp:662: error: 'VECTORIZER_FIRST_NEED_GROUPED_UNROLL' was not declared in this scope
      
      llvm-svn: 168623
      98b35447
Loading