HomeSort by relevance Sort by last modified time
    Searched defs:Comdat (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
Comdat.cpp 1 //===-- Comdat.cpp - Implement Metadata classes --------------------------===//
10 // This file implements the Comdat class.
14 #include "llvm/IR/Comdat.h"
18 Comdat::Comdat(SelectionKind SK, StringMapEntry<Comdat> *Name)
21 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {}
23 Comdat::Comdat() : Name(nullptr), SK(Comdat::Any) {
    [all...]
  /external/llvm/include/llvm/IR/
Comdat.h 1 //===-- llvm/IR/Comdat.h - Comdat definitions -------------------*- C++ -*-===//
11 /// This file contains the declaration of the Comdat class, which represents a
12 /// single COMDAT in LLVM.
31 class Comdat {
34 Any, ///< The linker may choose any COMDAT.
35 ExactMatch, ///< The data referenced by the COMDAT must be the same.
36 Largest, ///< The linker will choose the largest COMDAT.
37 NoDuplicates, ///< No other Module may specify this COMDAT.
38 SameSize, ///< The data referenced by the COMDAT must be the same size
    [all...]

Completed in 73 milliseconds