Skip to content
  1. Aug 18, 2006
    • Reid Spencer's avatar
      Fix a grammaro in a comment. · 5495fe8d
      Reid Spencer authored
      llvm-svn: 29765
      5495fe8d
    • Reid Spencer's avatar
      Drop the -s2048 option, it is specified incorrectly and the correct · 2da905c5
      Reid Spencer authored
      specification can't be handled by llvmc (= confuses it)
      
      llvm-svn: 29764
      2da905c5
    • Reid Spencer's avatar
      For PR797: · 713eedc1
      Reid Spencer authored
      Rid the Assembly Parser of exceptions. This is a really gross hack but it
      will do until the Assembly Parser is re-written as a recursive descent.
      The basic premise is that wherever the old "ThrowException" function was
      called (new name: GenerateError) we set a flag (TriggerError). Every
      production checks that flag and calls YYERROR if it is set. Additionally,
      each call to ThrowException in the grammar is replaced with GEN_ERROR
      which calls GenerateError and then YYERROR immediately. This prevents
      the remaining production from continuing after an error condition.
      
      llvm-svn: 29763
      713eedc1
    • Reid Spencer's avatar
      For PR872: · 378f7d5d
      Reid Spencer authored
      Shrinkify LLVM's footprint by removing the analyze tool and moving its
      functionality into the opt tool. THis eliminates one of the largest tools
      from LLVM and doesn't make opt much bigger because it already included
      most of the analysis passes.  To get the old analyze functionality pass
      the -analyze option to opt. Note that the integeration here is dead
      simple. The "main" of analyze was just copied to opt and invoked if the
      -analyze option was given. There may be opportunities for further
      integration such as removing the distinction between transform passes
      and analysis passes.
      
      To use the analysis functionality, if you previously did this:
        analyze $FNAME -domset -disable-verify
      you would now do this:
        opt -analyze $FNAME -domset -disable-verify
      Pretty simple.
      
      llvm-svn: 29762
      378f7d5d
    • Chris Lattner's avatar
      Temporarily xfail this test, evan will look at it in a week or so. · ac2610a9
      Chris Lattner authored
      llvm-svn: 29760
      ac2610a9
    • Patrick Jenkins's avatar
      Changing the format dejagnu tests are submitted. We used to only submit... · d5150169
      Patrick Jenkins authored
      Changing the format dejagnu tests are submitted. We used to only submit multisource information for pass fail. Now we submit all pass/fail test information. This should fix the issue where some results were not being reported.
      
      llvm-svn: 29757
      d5150169
    • Chris Lattner's avatar
      Constify some methods. Patch provided by Anton Vayvod, thanks! · 60f1eecd
      Chris Lattner authored
      llvm-svn: 29756
      60f1eecd
  2. Aug 17, 2006
  3. Aug 16, 2006
Loading