1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Tidy up. Whitespace.

llvm-svn: 138767
This commit is contained in:
Jim Grosbach 2011-08-29 21:15:20 +00:00
parent bbb6ed8264
commit 447ede4d6e

View File

@ -18,19 +18,19 @@
namespace llvm {
// SMLoc - Represents a location in source code.
class SMLoc {
class SMLoc {
const char *Ptr;
public:
SMLoc() : Ptr(0) {}
SMLoc(const SMLoc &RHS) : Ptr(RHS.Ptr) {}
bool isValid() const { return Ptr != 0; }
bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; }
bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; }
const char *getPointer() const { return Ptr; }
static SMLoc getFromPointer(const char *Ptr) {
SMLoc L;
L.Ptr = Ptr;