projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
477dc85
)
add a note
author
Chris Lattner
<sabre@nondot.org>
Wed, 31 Dec 2008 00:54:13 +0000
(
00:54
+0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/lib/Target/README.txt
b/lib/Target/README.txt
index 81b0f9cc23a362b11e71da397c607643d5999143..dc9402f696c64e5b1f8796ffb702d68d1bfaae80 100644
(file)
--- 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.
+
+//===---------------------------------------------------------------------===//