Skip to content
  1. Mar 28, 2012
  2. Mar 27, 2012
  3. Mar 26, 2012
  4. Mar 25, 2012
  5. Mar 24, 2012
    • Hal Finkel's avatar
      Fix small-integer VAARG on SVR4 ABI PPC64. · e44eb288
      Hal Finkel authored
      The PPC64 SVR4 ABI requires integer stack arguments, and thus the var. args., that
      are smaller than 64 bits be zero extended to 64 bits.
      
      llvm-svn: 153373
      e44eb288
    • Justin Holewinski's avatar
      PTX: Fix predicate logic bug · a84577dc
      Justin Holewinski authored
      Code such as:
      
      %vreg100 = setcc %vreg10, -1, SETNE
      brcond %vreg10, %tgt
      
      was being incorrectly morphed into
      
      %vreg100 = and %vreg10, 1
      brcond %vreg10, %tgt
      
      where the 'and' instruction could be eliminated since
      such logic is on 1-bit types in the PTX back-end, leaving
      us with just:
      
      brcond %vreg10, %tgt
      
      which essentially gives us inverted branch conditions.
      
      llvm-svn: 153364
      a84577dc
    • Jim Grosbach's avatar
      ARM tidy up ARMConstantIsland.cpp. · 190e7b6e
      Jim Grosbach authored
      No functional change, just tidy up the code and nomenclature a bit.
      
      llvm-svn: 153347
      190e7b6e
  6. Mar 23, 2012
  7. Mar 22, 2012
  8. Mar 21, 2012
Loading