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

Function getDecodedUnnamedAddrType

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

Source from the content-addressed store, hash-verified

942}
943
944static GlobalVariable::UnnamedAddr getDecodedUnnamedAddrType(unsigned Val) {
945 switch (Val) {
946 default: // Map unknown to UnnamedAddr::None.
947 case 0: return GlobalVariable::UnnamedAddr::None;
948 case 1: return GlobalVariable::UnnamedAddr::Global;
949 case 2: return GlobalVariable::UnnamedAddr::Local;
950 }
951}
952
953static int getDecodedCastOpcode(unsigned Val) {
954 switch (Val) {

Callers 3

parseGlobalVarRecordMethod · 0.85
parseFunctionRecordMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected