OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SI2
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/CodeGenCXX/
rtti-layout.cpp
74
struct
SI2
: Empty { };
117
//
SI2
has a single public empty base.
118
CHECK_VTABLE(
SI2
, si_class);
119
CHECK(to<__si_class_type_info>(typeid(
SI2
)).__base_type == &typeid(Empty));
/external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp
120
static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *
SI2
) {
121
if (SI1 ==
SI2
) return false; // Can't merge with self!
127
BasicBlock *SI2BB =
SI2
->getParent();
149
BranchInst *
SI2
,
152
if (SI1 ==
SI2
) return false; // Can't merge with self!
153
assert(SI1->isUnconditional() &&
SI2
->isConditional());
159
// 3>
SI2
->getCondition() and Cond have same operands.
160
CmpInst *Ci2 = dyn_cast<CmpInst>(
SI2
->getCondition());
169
BasicBlock *SI2BB =
SI2
->getParent();
[
all
...]
Completed in 769 milliseconds