diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-10-15 23:17:13 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-10-15 23:17:13 +0000 |
commit | 03265b6046225e5d4e04071acb91294cfe215931 (patch) | |
tree | cab3b3de11497d6fde896b3ba05685ed9293bc4b /lib/Basic/Targets.cpp | |
parent | 86035ae9d9fdb91f1af528835a6d89d6beb49393 (diff) |
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
Diffstat (limited to 'lib/Basic/Targets.cpp')
-rw-r--r-- | lib/Basic/Targets.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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? |