We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b48315d + 0a3bfff commit 1183af5Copy full SHA for 1183af5
llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
@@ -368,6 +368,11 @@ CV_REGISTER(AMD64_K7, 765)
368
369
#if defined(CV_REGISTERS_ALL) || defined(CV_REGISTERS_ARM64)
370
371
+// arm64intr.h from MSVC defines ARM64_FPSR, which conflicts with
372
+// these declarations.
373
+#pragma push_macro("ARM64_FPSR")
374
+#undef ARM64_FPSR
375
+
376
// ARM64 registers
377
378
CV_REGISTER(ARM64_NOREG, 0)
@@ -556,4 +561,6 @@ CV_REGISTER(ARM64_Q31, 211)
556
561
557
562
CV_REGISTER(ARM64_FPSR, 220)
558
563
564
+#pragma pop_macro("ARM64_FPSR")
565
559
566
#endif // defined(CV_REGISTERS_ALL) || defined(CV_REGISTERS_ARM64)
0 commit comments