From a63174a015939c70a72fbac681eada4031abfed0 Mon Sep 17 00:00:00 2001 From: Simon Atanasyan Date: Tue, 27 Jan 2015 20:23:51 +0000 Subject: [PATCH] [Core] Reformat the code with clang-format No functional changes. llvm-svn: 227232 --- lld/include/lld/Core/Simple.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lld/include/lld/Core/Simple.h b/lld/include/lld/Core/Simple.h index f8a6137..d107692 100644 --- a/lld/include/lld/Core/Simple.h +++ b/lld/include/lld/Core/Simple.h @@ -190,7 +190,9 @@ public: Scope scope() const override { return DefinedAtom::scopeLinkageUnit; } - Interposable interposable() const override { return DefinedAtom::interposeNo; } + Interposable interposable() const override { + return DefinedAtom::interposeNo; + } Merge merge() const override { return DefinedAtom::mergeNo; } @@ -233,7 +235,8 @@ public: Reference::KindValue kindValue, uint64_t off, const Atom *target, Reference::Addend a) { assert(target && "trying to create reference to nothing"); - auto node = new (_file.allocator()) SimpleReference(ns, arch, kindValue, off, target, a); + auto node = new (_file.allocator()) + SimpleReference(ns, arch, kindValue, off, target, a); _references.push_back(node); } @@ -267,9 +270,9 @@ public: private: typedef llvm::ilist RefList; - const File &_file; - uint64_t _ordinal; - mutable RefList _references; + const File &_file; + uint64_t _ordinal; + mutable RefList _references; }; class SimpleUndefinedAtom : public UndefinedAtom { -- 2.7.4