Searched defs:typeQuals (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp371 std::string typeQuals; local
393 typeQuals = "restrict";
396 typeQuals += typeQuals.empty() ? "const" : " const";
398 typeQuals += typeQuals.empty() ? "volatile" : " volatile";
419 typeQuals = "const";
421 typeQuals += typeQuals.empty() ? "volatile" : " volatile";
424 argTypeQuals.push_back(llvm::MDString::get(Context, typeQuals));
[all...]

Completed in 83 milliseconds