Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -S -verify -o -
      2 #define __MM_MALLOC_H
      3 
      4 #include <x86intrin.h>
      5 
      6 __m128d foo(__m128d a, __m128d b) {
      7   return __builtin_ia32_addsubps(b, a); // expected-error {{'__builtin_ia32_addsubps' needs target feature sse3}}
      8 }
      9