コード例 #1
0
ファイル: Lint.cpp プロジェクト: AnachroNia/llvm
void Lint::visitIndirectBrInst(IndirectBrInst &I) {
  visitMemoryReference(I, I.getAddress(), MemoryLocation::UnknownSize, 0,
                       nullptr, MemRef::Branchee);

  Assert(I.getNumDestinations() != 0,
         "Undefined behavior: indirectbr with no destinations", &I);
}
コード例 #2
0
ファイル: Lint.cpp プロジェクト: AHelper/llvm-z80-target
void Lint::visitIndirectBrInst(IndirectBrInst &I) {
  visitMemoryReference(I, I.getAddress(), ~0u, 0, 0, MemRef::Branchee);
}
コード例 #3
0
ファイル: Lint.cpp プロジェクト: jhoush/dist-llvm
void Lint::visitIndirectBrInst(IndirectBrInst &I) {
  visitMemoryReference(I, I.getAddress(), 0, 0);
}