search for: setallowsregister

Displaying 1 result from an estimated 1 matches for "setallowsregister".

2013 Feb 28
0
[LLVMdev] [cfe-dev] [MIPS] How can I add a constraint to LLVM/Clang for MIPS BE?
...etInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -462,6 +462,7 @@ bool TargetInfo::validateInputConstraint(ConstraintInfo *OutputConstraints, case 'N': case 'O': case 'P': + case 'R': break; case 'r': // general register. Info.setAllowsRegister(); diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 24a69ee..854e12b 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -4393,6 +4393,9 @@ public: case 'x': // hilo register pair Info.setAllowsRegister(); return true; + case 'R':...