mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-23 21:36:06 +00:00

It (introduced by 556d713c70bfaf58ac18d089883f9c34c581633a) appears to be related to the removed dragonegg project. In addition, the feature was a bit misnamed and may lur users to unnecessarily use it.
13 lines
310 B
Plaintext
13 lines
310 B
Plaintext
// REQUIRES: x86-registered-target
|
|
// REQUIRES: amdgpu-registered-target
|
|
|
|
#ifdef __HIP_DEVICE_COMPILE__
|
|
DEVICE __SSE3__
|
|
#else
|
|
HOST __SSE3__
|
|
#endif
|
|
|
|
// RUN: %clang -x hip -E -target x86_64-linux-gnu -msse3 --cuda-gpu-arch=gfx803 -nogpulib -nogpuinc -nobuiltininc -o - %s 2>&1 | FileCheck %s
|
|
|
|
// CHECK-NOT: SSE3
|