| 1089 | } |
| 1090 | |
| 1091 | static void upgradeDLLImportExportLinkage(GlobalValue *GV, unsigned Val) { |
| 1092 | switch (Val) { |
| 1093 | case 5: GV->setDLLStorageClass(GlobalValue::DLLImportStorageClass); break; |
| 1094 | case 6: GV->setDLLStorageClass(GlobalValue::DLLExportStorageClass); break; |
| 1095 | } |
| 1096 | } |
| 1097 | |
| 1098 | Type *BitcodeReader::getTypeByID(unsigned ID) { |
| 1099 | // The type table size is always specified correctly. |
no test coverage detected