Merging r310191:
authorHans Wennborg <hans@hanshq.net>
Mon, 7 Aug 2017 20:15:58 +0000 (20:15 +0000)
committerHans Wennborg <hans@hanshq.net>
Mon, 7 Aug 2017 20:15:58 +0000 (20:15 +0000)
commitef9c5ea4c7fced70a44b90887b90f72e45441802
tree939cd0f5e049a0d29c44e8be99bc8de6f7a6de40
parent22ec3c010bb6e43db3058248057f01389ccdaa13
Merging r310191:
------------------------------------------------------------------------
r310191 | ctopper | 2017-08-05 16:35:54 -0700 (Sat, 05 Aug 2017) | 18 lines

[X86] Enable isel to use the PAUSE instruction even when SSE2 is disabled. Clang part

Summary:
On older processors this instruction encoding is treated as a NOP.

MSVC doesn't disable intrinsics based on features the way clang/gcc does. Because the PAUSE instruction encoding doesn't crash older processors, some software out there uses these intrinsics without checking for SSE2.

This change also seems to also be consistent with gcc behavior.

Fixes PR34079

Reviewers: RKSimon, zvi

Reviewed By: RKSimon

Subscribers: cfe-commits

Differential Revision: https://reviews.llvm.org/D36362
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_50@310294 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Basic/BuiltinsX86.def
test/CodeGen/pause.c [new file with mode: 0644]