summaryrefslogtreecommitdiff
path: root/test/files/pos/annotDepMethType.flags
Commit message (Collapse)AuthorAgeFilesLines
* don't emit tiny switches: optimizer chokes on themAdriaan Moors2012-04-141-1/+0
| | | | | | | | | | | | | | | | | | workaround for inliner bug in run/t3835 see SI-5672 for the optimizer bug tiny switches (2 cases or less) don't make sense anyway, so this is not a big deal the annotDepMethType.flags contained -Xexperimental, which causes Any* to be considered as a valid return type, before we weren't exposed to this, because the product methods used (tiny) switches; with this change, they went back to pattern matches in any case, the -Xexperimental was intended to turn on dependent method types, not Any* as valid type (I can only assume), and they are now on by default the other tests were affected by our refusal to emit tiny switches
* temporary fix for compiler crash in dependend m...Lukas Rytz2010-10-111-0/+1
temporary fix for compiler crash in dependend method types with annotations. review by moors.