summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Sema')
-rw-r--r--clang/test/Sema/implicit-intel-builtin-decl.c40
-rw-r--r--clang/test/Sema/implicit-ms-builtin-decl.c19
2 files changed, 0 insertions, 59 deletions
diff --git a/clang/test/Sema/implicit-intel-builtin-decl.c b/clang/test/Sema/implicit-intel-builtin-decl.c
deleted file mode 100644
index e588a4b8866..00000000000
--- a/clang/test/Sema/implicit-intel-builtin-decl.c
+++ /dev/null
@@ -1,40 +0,0 @@
-// RUN: %clang_cc1 -triple x86_64-unknown-unknown -target-feature +sse2 -fsyntax-only -verify %s
-// RUN: %clang_cc1 -triple x86_64-unknown-unknown -target-feature +sse2 -fsyntax-only -verify %s -x c++
-
-void f() {
- (void)_mm_getcsr(); // expected-warning{{implicitly declaring library function '_mm_getcsr'}} \
- // expected-note{{include the header <xmmintrin.h> or explicitly provide a declaration for '_mm_getcsr'}}
- _mm_setcsr(1); // expected-warning{{implicitly declaring library function '_mm_setcsr'}} \
- // expected-note{{include the header <xmmintrin.h> or explicitly provide a declaration for '_mm_setcsr'}}
- _mm_sfence(); // expected-warning{{implicitly declaring library function '_mm_sfence'}} \
- // expected-note{{include the header <xmmintrin.h> or explicitly provide a declaration for '_mm_sfence'}}
-
- _mm_clflush((void*)0); // expected-warning{{implicitly declaring library function '_mm_clflush'}} \
- // expected-note{{include the header <emmintrin.h> or explicitly provide a declaration for '_mm_clflush'}}
- _mm_lfence(); // expected-warning{{implicitly declaring library function '_mm_lfence'}} \
- // expected-note{{include the header <emmintrin.h> or explicitly provide a declaration for '_mm_lfence'}}
- _mm_mfence(); // expected-warning{{implicitly declaring library function '_mm_mfence'}} \
- // expected-note{{include the header <emmintrin.h> or explicitly provide a declaration for '_mm_mfence'}}
- _mm_pause(); // expected-warning{{implicitly declaring library function '_mm_pause'}} \
- // expected-note{{include the header <emmintrin.h> or explicitly provide a declaration for '_mm_pause'}}
-}
-
-unsigned int _mm_getcsr();
-void _mm_setcsr(unsigned int);
-void _mm_sfence();
-
-void _mm_clflush(void const *);
-void _mm_lfence();
-void _mm_mfence();
-void _mm_pause();
-
-void g() {
- (void)_mm_getcsr();
- _mm_setcsr(1);
- _mm_sfence();
-
- _mm_clflush((void*)0);
- _mm_lfence();
- _mm_mfence();
- _mm_pause();
-}
diff --git a/clang/test/Sema/implicit-ms-builtin-decl.c b/clang/test/Sema/implicit-ms-builtin-decl.c
deleted file mode 100644
index e43d8f867d8..00000000000
--- a/clang/test/Sema/implicit-ms-builtin-decl.c
+++ /dev/null
@@ -1,19 +0,0 @@
-// RUN: %clang_cc1 -fsyntax-only -verify %s -fms-extensions
-
-void f() {
- (void)_byteswap_ushort(42); // expected-warning{{implicitly declaring library function '_byteswap_ushort}} \
- // expected-note{{include the header <stdlib.h> or explicitly provide a declaration for '_byteswap_ushort'}}
- (void)_byteswap_uint64(42LL); // expected-warning{{implicitly declaring library function '_byteswap_uint64}} \
- // expected-note{{include the header <stdlib.h> or explicitly provide a declaration for '_byteswap_uint64'}}
-}
-
-void _byteswap_ulong(); // expected-warning{{incompatible redeclaration of library function '_byteswap_ulong'}} \
-// expected-note{{'_byteswap_ulong' is a builtin}}
-
-unsigned short _byteswap_ushort(unsigned short);
-unsigned long long _byteswap_uint64(unsigned long long);
-
-void g() {
- (void)_byteswap_ushort(42);
- (void)_byteswap_uint64(42LL);
-}
OpenPOWER on IntegriCloud