mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 15:56:07 +00:00

The X86 clang/test/CodeGen/*builtins.c tests define the mm_malloc.h include guard as a hack for avoiding its inclusion (mm_malloc.h requires a hosted environment since it expects stdlib.h to be available - which is not the case in these internal clang codegen tests). This patch removes this hack and instead passes -ffreestanding to clang cc1. Differential Revision: https://reviews.llvm.org/D24825 llvm-svn: 282581
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-unknown-unknown -target-feature +sha -emit-llvm -o - | FileCheck %s
|
|
|
|
|
|
#include <immintrin.h>
|
|
|
|
__m128i test_sha1rnds4(__m128i a, __m128i b) {
|
|
// CHECK: call <4 x i32> @llvm.x86.sha1rnds4
|
|
return _mm_sha1rnds4_epu32(a, b, 3);
|
|
}
|
|
__m128i test_sha1nexte(__m128i a, __m128i b) {
|
|
// CHECK: call <4 x i32> @llvm.x86.sha1nexte
|
|
return _mm_sha1nexte_epu32(a, b);
|
|
}
|
|
__m128i test_sha1msg1(__m128i a, __m128i b) {
|
|
// CHECK: call <4 x i32> @llvm.x86.sha1msg1
|
|
return _mm_sha1msg1_epu32(a, b);
|
|
}
|
|
__m128i test_sha1msg2(__m128i a, __m128i b) {
|
|
// CHECK: call <4 x i32> @llvm.x86.sha1msg2
|
|
return _mm_sha1msg2_epu32(a, b);
|
|
}
|
|
__m128i test_sha256rnds2(__m128i a, __m128i b, __m128i c) {
|
|
// CHECK: call <4 x i32> @llvm.x86.sha256rnds2
|
|
return _mm_sha256rnds2_epu32(a, b, c);
|
|
}
|
|
__m128i test_sha256msg1(__m128i a, __m128i b) {
|
|
// CHECK: call <4 x i32> @llvm.x86.sha256msg1
|
|
return _mm_sha256msg1_epu32(a, b);
|
|
}
|
|
__m128i test_sha256msg2(__m128i a, __m128i b) {
|
|
// CHECK: call <4 x i32> @llvm.x86.sha256msg2
|
|
return _mm_sha256msg2_epu32(a, b);
|
|
}
|