OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConstExpr
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/SemaCXX/
implicit-exception-spec.cpp
16
// Noexcept::Noexcept is not declared
constexpr
, therefore noexcept(Noexcept())
19
struct
ConstExpr
{
20
bool b = noexcept(
ConstExpr
()) && ThrowSomething(); // expected-error {{cannot be used by non-static data member initializer}}
23
bool w = noexcept(
ConstExpr
());
/external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp
345
if (auto
ConstExpr
= dyn_cast<ConstantExpr>(Opnd)) {
347
if (!
ConstExpr
->isCast())
350
if (auto ConstInt = dyn_cast<ConstantInt>(
ConstExpr
->getOperand(0))) {
513
if (auto
ConstExpr
= dyn_cast<ConstantExpr>(Opnd)) {
514
Instruction *ConstExprInst =
ConstExpr
->getAsInstruction();
523
<< "From : " << *
ConstExpr
<< '\n');
Completed in 158 milliseconds