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

  /external/clang/test/SemaCXX/
return-noreturn.cpp 1 // RUN: %clang_cc1 %s -fsyntax-only -fcxx-exceptions -verify -Wreturn-type -Wmissing-noreturn -Wno-unreachable-code -Wno-covered-switch-default
2 // RUN: %clang_cc1 %s -fsyntax-only -fcxx-exceptions -std=c++11 -verify -Wreturn-type -Wmissing-noreturn -Wno-unreachable-code -Wno-covered-switch-default
4 // A destructor may be marked noreturn and should still influence the CFG.
5 void pr6884_abort() __attribute__((noreturn));
9 ~pr6884_abort_struct() __attribute__((noreturn)) { pr6884_abort(); }
43 // FIXME: detect noreturn destructors triggered by calls to delete.
149 struct NoReturn {
150 ~NoReturn() __attribute__((noreturn));
159 true ? NoReturn() : NoReturn()
    [all...]
cxx1y-deduced-return-type.cpp 304 namespace NoReturn {
  /external/clang/test/Analysis/
temp-obj-dtors-cfg-output.cpp 143 class NoReturn {
145 ~NoReturn() __attribute__((noreturn));
151 NoReturn().f();
157 NoReturn(), 47;
161 extern bool check(const NoReturn&);
166 if (!value || check(NoReturn())) {
176 if (!value || !value || check(NoReturn())) {
186 if (!value || value || check(NoReturn())) {
    [all...]
dtor.cpp 380 ~NRCheck() __attribute__((noreturn));
469 namespace NoReturn {
471 ~NR() __attribute__((noreturn));
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 38 STATISTIC(NumUnreach, "Number of noreturn calls optimized");
163 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) {
164 F->addFnAttr(Attribute::NoReturn);
FunctionAttrs.cpp     [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 359 /// Whether this function is noreturn.
360 unsigned NoReturn : 1;
423 bool isNoReturn() const { return NoReturn; }
480 ID.AddBoolean(NoReturn);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 223 constexpr int NoReturn() {} // expected-error {{no return statement in constexpr function}}
  /external/llvm/include/llvm/IR/
Function.h 311 Attribute::NoReturn);
314 addFnAttr(Attribute::NoReturn);
Instructions.h     [all...]
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 457 // Anything which is not a noreturn function is a real def.
470 return !(Called == nullptr || !Called->hasFnAttribute(Attribute::NoReturn) ||
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/llvm/lib/IR/
Attributes.cpp 237 if (hasAttribute(Attribute::NoReturn))
238 return "noreturn";
411 case Attribute::NoReturn: return 1 << 2;
    [all...]
Verifier.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 580 FI->NoReturn = info.getNoReturn();
    [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 58 /// terms of noreturn and default calling convention adjustments.
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 499 HANDLE_ATTR(NoReturn);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 221 case Attribute::NoReturn:
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 1145 milliseconds