OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SI1
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/CodeGenCXX/
rtti-layout.cpp
73
struct
SI1
: A { };
113
//
SI1
has a single public base.
114
CHECK_VTABLE(
SI1
, si_class);
115
CHECK(to<__si_class_type_info>(typeid(
SI1
)).__base_type == &typeid(A));
/external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.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!
126
BasicBlock *SI1BB =
SI1
->getParent();
144
/// to merge these two terminator instructions together, where
SI1
is an
148
static bool isProfitableToFoldUnconditional(BranchInst *
SI1
,
152
if (
SI1
== SI2) return false; // Can't merge with self!
153
assert(
SI1
->isUnconditional() && SI2->isConditional());
168
BasicBlock *SI1BB =
SI1
->getParent();
[
all
...]
Completed in 81 milliseconds