From: Anton Korobeynikov Date: Thu, 15 Oct 2009 23:17:13 +0000 (+0000) Subject: Disallow arbitrary custom inline asm constraints for msp430. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=03265b6046225e5d4e04071acb91294cfe215931;p=clang Disallow arbitrary custom inline asm constraints for msp430. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84219 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 1d4d1235c9..5337615306 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1573,8 +1573,8 @@ namespace { } virtual bool validateAsmConstraint(const char *&Name, TargetInfo::ConstraintInfo &info) const { - // FIXME: implement - return true; + // No target constraints for now. + return false; } virtual const char *getClobbers() const { // FIXME: Is this really right?