diff options
author | Anders Carlsson <andersca@mac.com> | 2008-10-06 00:41:45 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-10-06 00:41:45 +0000 |
commit | fce0934560b0e3cc55e95e54883c0f540c98cdb6 (patch) | |
tree | d292f85133e785ee968dccbae52c986a4dc4aef3 /lib/Basic | |
parent | e25d270b4d8e1d348bf74710c19b3c58d00933cb (diff) |
Add the 'y' assembler constraint.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57144 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic')
-rw-r--r-- | lib/Basic/Targets.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 016f88e498..78a43d9f54 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -437,6 +437,7 @@ X86TargetInfo::validateAsmConstraint(char c, case 't': // top of floating point stack. case 'u': // second from top of floating point stack. case 'q': // Any register accessible as [r]l: a, b, c, and d. + case 'y': // Any MMX register. case 'Q': // Any register accessible as [r]h: a, b, c, and d. case 'Z': // 32-bit integer constant for use with zero-extending x86_64 // instructions. |