1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[llvm-exegesis] Fix rGaf658d920e2b

Add missing header.

```
../../llvm/tools/llvm-exegesis/lib/X86/Target.cpp(606,14): error: use of undeclared identifier '__readeflags'
    Eflags = __readeflags();
```
This commit is contained in:
Clement Courbet 2020-11-04 13:22:01 +01:00
parent 05c2fcc211
commit 672cb989aa

View File

@ -28,6 +28,7 @@
#include <vector>
#if defined(_MSC_VER)
#include <immintrin.h>
#include <intrin.h>
#endif
namespace llvm {