Searched defs:SMLoc (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Darm-cc.cpp3 class SMLoc { class
6 SMLoc();
7 SMLoc(const SMLoc &RHS);
9 SMLoc foo(void *p);
13 void zed(SMLoc x);
15 SMLoc a;
19 // CHECK: declare void @_Z3fooPv(%class.SMLoc* sret, i8*)
20 // CHECK: declare void @_Z3zed5SMLoc(%class.SMLoc*)
/external/llvm/include/llvm/Support/
H A DSMLoc.h1 //===- SMLoc.h - Source location for use with diagnostics -------*- C++ -*-===//
10 // This file declares the SMLoc class. This class encapsulates a location in
22 /// SMLoc - Represents a location in source code.
23 class SMLoc { class in namespace:llvm
26 SMLoc() : Ptr(0) {} function in class:llvm::SMLoc
27 SMLoc(const SMLoc &RHS) : Ptr(RHS.Ptr) {} function in class:llvm::SMLoc
31 bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; }
32 bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; }
36 static SMLoc getFromPointe
[all...]
/external/llvm/include/llvm/MC/
H A DMCFixup.h15 #include "llvm/Support/SMLoc.h"
75 SMLoc Loc;
78 MCFixupKind Kind, SMLoc Loc = SMLoc()) {
107 SMLoc getLoc() const { return Loc; }
77 Create(uint32_t Offset, const MCExpr *Value, MCFixupKind Kind, SMLoc Loc = SMLoc()) argument

Completed in 169 milliseconds