Skip to content
  1. Feb 22, 2007
  2. Feb 21, 2007
  3. Feb 13, 2007
  4. Feb 11, 2007
  5. Feb 08, 2007
  6. Jan 31, 2007
  7. Jan 30, 2007
  8. Jan 29, 2007
    • Chris Lattner's avatar
      Add support for target-specific builtins, including detecting nonportability · 10a5b387
      Chris Lattner authored
      of source code.  For example:
      
      $ clang INPUTS/carbon_h.c -arch i386 -arch ppc
      prints:
      ...
      /usr/lib/gcc/i686-apple-darwin8/4.0.1/include/mmintrin.h:51:3: note: use of a target-specific builtin function, source is not 'portable'
        __builtin_ia32_emms ();
        ^
      
      because carbon.h pulls in xmmintrin.h, and __builtin_ia32_emms isn't a builtin on ppc.
      
      Though clang now supports target-specific builtins, the full table isn't implemented yet.
      
      llvm-svn: 39328
      10a5b387
  9. Jan 28, 2007
  10. Jan 27, 2007
  11. Jan 26, 2007
  12. Jan 25, 2007
    • Chris Lattner's avatar
      Reject: · e5a6656b
      Chris Lattner authored
      struct q { int a, a; };
      
      with:
      
      t.c:3:19: error: duplicate member 'a'
      struct q { int a, a; };
                        ^
      t.c:3:16: error: previous definition is here
      struct q { int a, a; };
                     ^
      
      llvm-svn: 39303
      e5a6656b
Loading