a1f8ad145e
applied to our copy of llvm/clang. These can be applied in alphabetical order to a pristine llvm/clang 3.4 release source tree, to result in the same version used in FreeBSD. This is intended to clearly document all the changes until now, which mostly consist of cherry pickings from the respective upstream trunks, plus a number of hand-written FreeBSD-specific ones. Hopefully those can eventually be cleaned up and sent upstream too. MFC after: 1 week X-MFC-With: r263313
17 lines
597 B
Diff
17 lines
597 B
Diff
This patch adds the alias bit_FXSAVE for bit_FXSR to cpuid.h.
|
|
|
|
Introduced here: http://svn.freebsd.org/changeset/base/259498
|
|
|
|
Index: tools/clang/lib/Headers/cpuid.h
|
|
===================================================================
|
|
--- tools/clang/lib/Headers/cpuid.h
|
|
+++ tools/clang/lib/Headers/cpuid.h
|
|
@@ -79,6 +79,7 @@
|
|
#define bit_ACPI 0x00400000
|
|
#define bit_MMX 0x00800000
|
|
#define bit_FXSR 0x01000000
|
|
+#define bit_FXSAVE bit_FXSR /* for gcc compat */
|
|
#define bit_SSE 0x02000000
|
|
#define bit_SSE2 0x04000000
|
|
#define bit_SS 0x08000000
|