From 3de54ffeb037a7af037f3089e4cd4e917ce7b3ca Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Thu, 13 Mar 2008 03:45:48 +0000 Subject: Add note about asm constraints. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48324 91177308-0d34-0410-b5e6-96231b3b80d8 --- NOTES.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'NOTES.txt') diff --git a/NOTES.txt b/NOTES.txt index 0f4a8de0aa..0759acf355 100644 --- a/NOTES.txt +++ b/NOTES.txt @@ -110,3 +110,27 @@ The "selection of target" behavior is defined as follows: (1) If the user does not specify -triple, we default to the host triple. (2) If the user specifies a -arch, that overrides the arch in the host or specified triple. + +//===---------------------------------------------------------------------===// + + +verifyInputConstraint and verifyOutputConstraint should not return bool. + +Instead we should return something like: + +enum VerifyConstraintResult { + Valid, + + // Output only + OutputOperandConstraintLacksEqualsCharacter, + MatchingConstraintNotValidInOutputOperand, + + // Input only + InputOperandConstraintContainsEqualsCharacter, + MatchingConstraintReferencesInvalidOperandNumber, + + // Both + PercentConstraintUsedWithLastOperand +}; + +//===---------------------------------------------------------------------===// -- cgit v1.2.3