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

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 118 constexpr int NoReturn() {} // expected-error {{no return statement in constexpr function}}
  /external/clang/lib/CodeGen/
CGCall.h 175 /// Whether this function is noreturn.
176 unsigned NoReturn : 1;
217 bool isNoReturn() const { return NoReturn; }
259 ID.AddBoolean(NoReturn);
CGCall.cpp 402 FI->NoReturn = info.getNoReturn();
    [all...]
  /external/llvm/include/llvm/
Function.h 234 return hasFnAttr(Attribute::NoReturn);
237 if (DoesNotReturn) addFnAttr(Attribute::NoReturn);
238 else removeFnAttr(Attribute::NoReturn);
Attributes.h 105 DECLARE_LLVM_ATTRIBUTE(NoReturn,1<<2) ///< Mark the function as not returning
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 34 STATISTIC(NumUnreach, "Number of noreturn calls optimized");
145 NewAttributes |= Attribute::NoReturn;
  /external/llvm/lib/VMCore/
Attributes.cpp 35 if (Attrs & Attribute::NoReturn)
36 Result += "noreturn ";
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 655 /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 465 HANDLE_ATTR(NoReturn);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 906 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 489 Attributes OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 516 Attributes OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn |
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 795 Attributes OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
    [all...]

Completed in 301 milliseconds