forked from OSchip/llvm-project
[X86] Change the name string for the newly add DF flag register to 'dirflag' to match the clobber name supported by clang for MS inline assembly.
This should fix the failure found by Chromium reported here https://bugs.chromium.org/p/chromium/issues/detail?id=831158 The test case will be added in clang. llvm-svn: 329734
This commit is contained in:
parent
860f0a5dd8
commit
442428540a
|
@ -275,7 +275,7 @@ def FPSW : X86Reg<"fpsw", 0>;
|
||||||
def EFLAGS : X86Reg<"flags", 0>;
|
def EFLAGS : X86Reg<"flags", 0>;
|
||||||
|
|
||||||
// The direction flag.
|
// The direction flag.
|
||||||
def DF : X86Reg<"DF", 0>;
|
def DF : X86Reg<"dirflag", 0>;
|
||||||
|
|
||||||
|
|
||||||
// Segment registers
|
// Segment registers
|
||||||
|
|
Loading…
Reference in New Issue