Disallow arbitrary custom inline asm constraints for msp430.

llvm-svn: 84219
This commit is contained in:
Anton Korobeynikov 2009-10-15 23:17:13 +00:00
parent 419160bd79
commit 051913bb86
1 changed files with 2 additions and 2 deletions

View File

@ -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?