[PATCH] D57642: [X86] Update clobber list in a test after D57641. Remove filter for 'fpsw' in MS inline asm clobber list generation since the backend now uses 'fpsr'.

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 2 13:44:17 PST 2019


craig.topper created this revision.
craig.topper added a reviewer: rnk.
Herald added subscribers: cfe-commits, eraman.
Herald added a project: clang.

The backend used to print the x87 FPSW register as 'fpsw', but gcc inline asm uses 'fpsr'. After D57641 <https://reviews.llvm.org/D57641>, the backend now uses 'fpsr' to match. So we need to update the test and we can remove the code that excluded the 'fpsw' string.


Repository:
  rC Clang

https://reviews.llvm.org/D57642

Files:
  lib/Parse/ParseStmtAsm.cpp
  test/CodeGen/ms-inline-asm.c


Index: test/CodeGen/ms-inline-asm.c
===================================================================
--- test/CodeGen/ms-inline-asm.c
+++ test/CodeGen/ms-inline-asm.c
@@ -571,7 +571,7 @@
 // CHECK: fld dword ptr $1
   __asm fistp i
 // CHECK: fistp dword ptr $0
-// CHECK: "=*m,*m,~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}, float* %{{.*}})
+// CHECK: "=*m,*m,~{fpsr},~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}, float* %{{.*}})
 }
 
 void t41(unsigned short a) {
Index: lib/Parse/ParseStmtAsm.cpp
===================================================================
--- lib/Parse/ParseStmtAsm.cpp
+++ lib/Parse/ParseStmtAsm.cpp
@@ -636,7 +636,7 @@
   // Filter out "fpsw" and "mxcsr". They aren't valid GCC asm clobber
   // constraints. Clang always adds fpsr to the clobber list anyway.
   llvm::erase_if(Clobbers, [](const std::string &C) {
-    return C == "fpsw" || C == "mxcsr";
+    return C == "mxcsr";
   });
 
   // Build the vector of clobber StringRefs.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57642.184917.patch
Type: text/x-patch
Size: 966 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190202/a4cd5c0b/attachment.bin>


More information about the llvm-commits mailing list