Skip to content
  1. Oct 02, 2006
  2. Oct 01, 2006
  3. Sep 30, 2006
  4. Sep 29, 2006
  5. Sep 28, 2006
    • Reid Spencer's avatar
      Use the -emit-llvm switch to generate LLVM assembly that can be parsed · 5f2b79ec
      Reid Spencer authored
      by the test case.
      
      llvm-svn: 30654
      5f2b79ec
    • Reid Spencer's avatar
      Add a test case for PR902. · 4fde7fae
      Reid Spencer authored
      llvm-svn: 30653
      4fde7fae
    • 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
    • Chris Lattner's avatar
      new testcase · a3542a82
      Chris Lattner authored
      llvm-svn: 30651
      a3542a82
    • 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
Loading