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

Function hasImplicitComdat

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

Source from the content-addressed store, hash-verified

817//===----------------------------------------------------------------------===//
818
819static bool hasImplicitComdat(size_t Val) {
820 switch (Val) {
821 default:
822 return false;
823 case 1: // Old WeakAnyLinkage
824 case 4: // Old LinkOnceAnyLinkage
825 case 10: // Old WeakODRLinkage
826 case 11: // Old LinkOnceODRLinkage
827 return true;
828 }
829}
830
831static GlobalValue::LinkageTypes getDecodedLinkage(unsigned Val) {
832 switch (Val) {

Callers 2

parseGlobalVarRecordMethod · 0.85
parseFunctionRecordMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected