Searched defs:SI1 (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Drtti-layout.cpp73 struct SI1 : A { }; struct in inherits: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/Utils/
H A DSimplifyCFG.cpp120 static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) { argument
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, argument
152 if (SI1 == SI2) return false; // Can't merge with self!
153 assert(SI1->isUnconditional() && SI2->isConditional());
168 BasicBlock *SI1BB = SI1->getParent();

Completed in 152 milliseconds