diff options
-rw-r--r-- | clang/lib/Basic/TargetInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Basic/TargetInfo.cpp b/clang/lib/Basic/TargetInfo.cpp index eb912d578e3..3ec3551ebb3 100644 --- a/clang/lib/Basic/TargetInfo.cpp +++ b/clang/lib/Basic/TargetInfo.cpp @@ -178,6 +178,7 @@ bool TargetInfo::validateOutputConstraint(const char *Name, info = (ConstraintInfo)(info|CI_AllowsMemory); break; case 'g': // general register, memory operand or immediate integer. + case 'X': // any operand. info = (ConstraintInfo)(info|CI_AllowsMemory|CI_AllowsRegister); break; } @@ -263,6 +264,7 @@ bool TargetInfo::validateInputConstraint(const char *Name, info = (ConstraintInfo)(info|CI_AllowsMemory); break; case 'g': // general register, memory operand or immediate integer. + case 'X': // any operand. info = (ConstraintInfo)(info|CI_AllowsMemory|CI_AllowsRegister); break; } |