Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 %s -fsyntax-only -verify -triple=i686-mingw32
      2 // RUN: %clang_cc1 %s -fsyntax-only -verify -triple=x86_64-mingw32
      3 
      4 // mingw-w64's intrin.h has decls below.
      5 // we should accept them.
      6 extern unsigned int __builtin_ia32_crc32qi (unsigned int, unsigned char);
      7 extern unsigned int __builtin_ia32_crc32hi (unsigned int, unsigned short);
      8 extern unsigned int __builtin_ia32_crc32si (unsigned int, unsigned int);
      9