Clang Project

clang_source_code/test/CodeGen/target-builtin-error.c
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