Searched refs:isDecl (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DARMSubtarget.cpp265 bool isDecl = GV->hasAvailableExternallyLinkage();
267 isDecl = true;
278 if (!isDecl && !GV->isWeakForLinker())
288 if (isDecl || GV->hasCommonLinkage())
296 if (!isDecl && !GV->isWeakForLinker())
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCSubtarget.cpp159 bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
160 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
163 GV->hasCommonLinkage() || isDecl;
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86Subtarget.cpp64 bool isDecl = GV->hasAvailableExternallyLinkage();
66 isDecl = true;
79 (isDecl || GV->isWeakForLinker()))
105 if (!isDecl && !GV->isWeakForLinker())
115 if (isDecl || GV->hasCommonLinkage()) {
129 if (!isDecl && !GV->isWeakForLinker())
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTWriter.h137 bool isDecl() const { return !IsType; } function in class:clang::ASTWriter::DeclOrType
145 assert(isDecl() && "Not a decl!");

Completed in 56 milliseconds