MCPcopy Create free account
hub / github.com/GANGE666/xVMP / getDecodedDLLStorageClass

Function getDecodedDLLStorageClass

src/lib/Bitcode/Reader/BitcodeReader.cpp:915–923  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

913}
914
915static GlobalValue::DLLStorageClassTypes
916getDecodedDLLStorageClass(unsigned Val) {
917 switch (Val) {
918 default: // Map unknown values to default.
919 case 0: return GlobalValue::DefaultStorageClass;
920 case 1: return GlobalValue::DLLImportStorageClass;
921 case 2: return GlobalValue::DLLExportStorageClass;
922 }
923}
924
925static bool getDecodedDSOLocal(unsigned Val) {
926 switch(Val) {

Callers 3

parseGlobalVarRecordMethod · 0.85
parseFunctionRecordMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected