HomeSort by relevance Sort by last modified time
    Searched refs:ConstStr (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
InlineAsm.cpp 245 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) {
248 ConstraintInfoVector Constraints = ParseConstraints(ConstStr);
251 if (Constraints.empty() && !ConstStr.empty()) return false;
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 174 auto *ConstStr = CGM.GetAddrOfConstantCString(Str, Name.c_str());
175 return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType(),
176 ConstStr, Zeros);
185 auto *ConstStr = TheModule.getGlobalVariable(name);
186 if (!ConstStr) {
188 ConstStr = new llvm::GlobalVariable(TheModule, value->getType(), true,
191 return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType(),
192 ConstStr, Zeros);
242 auto *ConstStr = CGM.GetAddrOfConstantCString(NameAndAttributes);
243 return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType()
    [all...]

Completed in 2003 milliseconds