Skip to content
  1. Jul 31, 2007
  2. Jul 30, 2007
  3. Jul 29, 2007
    • Steve Naroff's avatar
      · ddf5a1d7
      Steve Naroff authored
      Implement pretty diagnostics when doing on-the-fly vector sizing (for vector component access).
      
      For example, before this commit, the following diagnostics would be emitted...
      
      ocu.c:49:12: error: incompatible types assigning 'float  __attribute__((ocu_vector_type(3)))' to 'float4'
          vec4_2 = vec4.rgb; // shorten
          ~~~~~~ ^ ~~~~~~~~
      ocu.c:51:7: error: incompatible types assigning 'float  __attribute__((ocu_vector_type(2)))' to 'float'
          f = vec2.xx; // shorten
          ~ ^ ~~~~~~~
      
      Now, the diagnostics look as you would expect...
      
      ocu.c:49:12: error: incompatible types assigning 'float3' to 'float4'
          vec4_2 = vec4.rgb; // shorten
          ~~~~~~ ^ ~~~~~~~~
      ocu.c:51:7: error: incompatible types assigning 'float2' to 'float'
          f = vec2.xx; // shorten
          ~ ^ ~~~~~~~
      
      llvm-svn: 40579
      ddf5a1d7
    • Steve Naroff's avatar
      · f7a5da17
      Steve Naroff authored
      Added a new expression, OCUVectorComponent.
      
      llvm-svn: 40577
      f7a5da17
  4. Jul 28, 2007
  5. Jul 26, 2007
    • Steve Naroff's avatar
      · c701ace2
      Steve Naroff authored
      Add Type::isOCUVectorType().
      Convert isFunctionType(), isStructureType(), and isUnionType() to the new API.
      
      llvm-svn: 40541
      c701ace2
    • Steve Naroff's avatar
      Fix the following bogus diagnostic...reported by Jeroen. · 49ab9776
      Steve Naroff authored
      #include <stdio.h>
      
      int
      main(void) {
              int test = 0;
      
              printf("Type is %s\n", (test >= 1 ? "short" : "char"));
      
              return (0);
      }
      
      It comes up with a diagnostic that's misleading upon first read.
      
      t.c:7:36: error: incompatible operand types ('char *' and 'char *')
              printf("Type is %s\n", (test >= 1 ? "short" : "char"));
                                                ^ ~~~~~~~   ~~~~~~
      1 diagnostic generated.
      
      llvm-svn: 40526
      49ab9776
    • Chris Lattner's avatar
      add another link. · b50f1e41
      Chris Lattner authored
      llvm-svn: 40512
      b50f1e41
    • Chris Lattner's avatar
      don't expect to be able to reparse arbitrary system headers. · 626246e9
      Chris Lattner authored
      llvm-svn: 40511
      626246e9
    • Steve Naroff's avatar
      Forgot a return stmt (oops). · 62b35d41
      Steve Naroff authored
      llvm-svn: 40509
      62b35d41
    • Steve Naroff's avatar
      · 185616f2
      Steve Naroff authored
      Various improvements to Sema::ParseMemberReferenceExpr().
      
      - Added source range support to Diag's.
      - Used the new type predicate API to remove dealing with the canonical
      type explicitly.
      - Added Type::isRecordType().
      - Removed some casts.
      - Removed a const qualifier from RecordType::getDecl(). 
      
      llvm-svn: 40508
      185616f2
  6. Jul 25, 2007
    • Steve Naroff's avatar
      - Fix commit in Parser.h (patch by Kevin Andre). · b8af1c2b
      Steve Naroff authored
      - Add comment and minor cleanup to yesterday's fix to ParseCallExpr().
      
      llvm-svn: 40492
      b8af1c2b
    • Chris Lattner's avatar
      Fix a couple of bugs, add some new cool stuff. · 02c0439a
      Chris Lattner authored
      1. Fix a todo in Parser::ParseTag, to recover better.  On code like
         that in test/Sema/decl-invalid.c it causes us to return a single
         error instead of multiple.
      2. Fix an error in Sema::ParseDeclarator, where it would crash if the
         declarator didn't have an identifier.  Instead, diagnose the problem.
      3. Start adding infrastructure to track the range of locations covered
         by a declspec or declarator.  This is mostly implemented for declspec,
         but could be improved, it is missing for declarator.
      
      Thanks to Neil for pointing out this crash.
      
      llvm-svn: 40482
      02c0439a
  7. Jul 24, 2007
  8. Jul 23, 2007
  9. Jul 22, 2007
Loading