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

  /external/llvm/include/llvm/IR/
DebugLoc.h 1 //===- DebugLoc.h - Debug Location Information ------------------*- C++ -*-===//
32 /// To avoid extra includes, \a DebugLoc doubles the \a MDLocation API with a
34 class DebugLoc {
38 DebugLoc() {}
39 DebugLoc(DebugLoc &&X) : Loc(std::move(X.Loc)) {}
40 DebugLoc(const DebugLoc &X) : Loc(X.Loc) {}
41 DebugLoc &operator=(DebugLoc &&X)
    [all...]
  /external/llvm/lib/IR/
DebugLoc.cpp 1 //===-- DebugLoc.cpp - Implement DebugLoc class ---------------------------===//
10 #include "llvm/IR/DebugLoc.h"
17 // DebugLoc Implementation
19 DebugLoc::DebugLoc(const MDLocation *L) : Loc(const_cast<MDLocation *>(L)) {}
20 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {}
22 MDLocation *DebugLoc::get() const {
26 unsigned DebugLoc::getLine() const
    [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.h 202 llvm::Value *DebugLoc;

Completed in 198 milliseconds