add a note
authorChris Lattner <sabre@nondot.org>
Wed, 31 Dec 2008 00:54:13 +0000 (00:54 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 31 Dec 2008 00:54:13 +0000 (00:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61513 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/README.txt

index 81b0f9cc23a362b11e71da397c607643d5999143..dc9402f696c64e5b1f8796ffb702d68d1bfaae80 100644 (file)
@@ -1486,3 +1486,12 @@ codegen.
 456.hmmer apparently uses strcspn and strspn a lot.  471.omnetpp uses strspn.
 
 //===---------------------------------------------------------------------===//
+
+"gas" uses this idiom:
+  else if (strchr ("+-/*%|&^:[]()~", *intel_parser.op_string))
+..
+  else if (strchr ("<>", *intel_parser.op_string)
+
+Those should be turned into a switch.
+
+//===---------------------------------------------------------------------===//