diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/README.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt index 81b0f9c..dc9402f 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -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. + +//===---------------------------------------------------------------------===// |