Skip to content
  1. Oct 03, 2006
  2. Oct 02, 2006
  3. Oct 01, 2006
  4. Sep 30, 2006
  5. Sep 29, 2006
  6. Sep 28, 2006
    • Chris Lattner's avatar
      Shift amounts are always 32-bits, even in 64-bit mode. This fixes · 78370606
      Chris Lattner authored
      CodeGen/PowerPC/2006-09-28-shift_64.ll
      
      llvm-svn: 30652
      78370606
    • Reid Spencer's avatar
      Fix PR902: · 309080ab
      Reid Spencer authored
      Errors are generated with the YYERROR macro which can only be called from
      a production (inside yyparse) because of the goto statement in the macro.
      This lead to several situations where GEN_ERROR was not called but
      GenerateError was used instead (because it doesn't use YYERROR). However,
      in such situations, catching the error much later (e.g. at the end of
      the production) is not sufficient because LLVM can assert on invalid data
      before the end of the production is reached. The solution is to ensure that
      the CHECK_FOR_ERROR macro (which invokes YYERROR if there's an error) is
      used as soon as possible after a call to GenerateError has been made.
      
      llvm-svn: 30650
      309080ab
    • Evan Cheng's avatar
      TargetRegisterClass specifies the desired spill alignment. However, it cannot... · bcf1b412
      Evan Cheng authored
      TargetRegisterClass specifies the desired spill alignment. However, it cannot be honored if stack alignment is smaller.
      
      llvm-svn: 30648
      bcf1b412
Loading