Skip to content
  1. Aug 05, 2008
    • Daniel Dunbar's avatar
      Add more Parser/Sema support for GCC asm-label extension. · 4983df37
      Daniel Dunbar authored
       - ActOnDeclarator now takes an additional parameter which is the
         AsmLabel if used. Its unfortunate that this bubbles up this high,
         but we cannot just lump it in as an attribute without mistakenly
         *accepting* it as an attribute.
       - The actual asm-label itself is, however, encoded as an AsmLabelAttr
         on the FunctionDecl.
       - Slightly improved parser error recovery on malformed asm-labels.
       - CodeGen support still missing...
      
      llvm-svn: 54339
      4983df37
    • Daniel Dunbar's avatar
      Bug fix, CodeGen of (void*) - (void*) was broken. · 5aa55d51
      Daniel Dunbar authored
       - <rdar://problem/6122967>
      
      llvm-svn: 54338
      5aa55d51
    • Daniel Dunbar's avatar
      Add EXTWARN Diagnostic class. · 81f7f290
      Daniel Dunbar authored
       - Like EXTENSION but always generates a warning (even without
         -pedantic).
       - Updated ptr -> int, int -> ptr, and incompatible cast warnings to
         be EXTWARN.
       - Other EXTENSION level diagnostics should be audited for upgrade.
       - Updated several test cases to fix code which produced unanticipated
         warnings.
      
      llvm-svn: 54335
      81f7f290
    • Ted Kremenek's avatar
      Nico Weber: · be9b33bf
      Ted Kremenek authored
      "the attached patch fixes some typos, 80 cols violations, etc. in comments."
      
      llvm-svn: 54328
      be9b33bf
  2. Aug 04, 2008
    • Daniel Dunbar's avatar
      Fix several issues in checking of address-of expressions. · b692ef40
      Daniel Dunbar authored
       - clang was erroneously accepting address-of applied to lvalue
         expressions involving pointer arithmetic.
       - clang was erroneously rejecting address-of applied to deref
         expressions of pointer-typed variables.
       - Improved existing test case.
       - Fixes: <rdar://problem/6113867>, <rdar://problem/6080158>
      
      llvm-svn: 54326
      b692ef40
    • Daniel Dunbar's avatar
      Avoid creating dummy block when no indirect gotos are present. · d27262f3
      Daniel Dunbar authored
      llvm-svn: 54322
      d27262f3
    • Daniel Dunbar's avatar
      Add CodeGen support for indirect goto. · 88402ce8
      Daniel Dunbar authored
       - Follows emission scheme used by llvm-gcc, i.e. invent an id for
         each label whose address is taken and replace each indirect goto by
         a switch to each possible target.
       - Currently we emit a switch for each indirect goto instead of
         merging them as llvm-gcc does.
      
      llvm-svn: 54318
      88402ce8
    • Chris Lattner's avatar
      · 7adf0760
      Chris Lattner authored
      Finally fix PR2189.  This makes a fairly invasive but important change to
      move getAsArrayType into ASTContext instead of being a method on type.
      This is required because getAsArrayType(const AT), where AT is a typedef
      for "int[10]" needs to return ArrayType(const int, 10).
      
      Fixing this greatly simplifies getArrayDecayedType, which is a good sign.
      
      llvm-svn: 54317
      7adf0760
  3. Aug 02, 2008
  4. Aug 01, 2008
  5. Jul 31, 2008
  6. Jul 30, 2008
  7. Jul 29, 2008
  8. Jul 27, 2008
  9. Jul 26, 2008
Loading