summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-09 23:46:42 +0000
committerChris Lattner <sabre@nondot.org>2009-09-09 23:46:42 +0000
commitd747a9f21f87418b7d257ccd6aaaa1f7419dab87 (patch)
tree2a83a4cd641822d51faee0974bc2b47bcd71337b /llvm/lib
parent0fea62d0c70cc6d44ff39dbaf78f8947f323919e (diff)
downloadbcm5719-llvm-d747a9f21f87418b7d257ccd6aaaa1f7419dab87.tar.gz
bcm5719-llvm-d747a9f21f87418b7d257ccd6aaaa1f7419dab87.zip
canonicalize namespace gymnastics
llvm-svn: 81402
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/MC/MCDisassembler.cpp5
-rw-r--r--llvm/lib/Support/MemoryObject.cpp43
2 files changed, 23 insertions, 25 deletions
diff --git a/llvm/lib/MC/MCDisassembler.cpp b/llvm/lib/MC/MCDisassembler.cpp
index 29af019ec55..5d0f4c50346 100644
--- a/llvm/lib/MC/MCDisassembler.cpp
+++ b/llvm/lib/MC/MCDisassembler.cpp
@@ -8,9 +8,10 @@
//===----------------------------------------------------------------------===//
#include "llvm/MC/MCDisassembler.h"
+using namespace llvm;
-llvm::MCDisassembler::MCDisassembler() {
+MCDisassembler::MCDisassembler() {
}
-llvm::MCDisassembler::~MCDisassembler() {
+MCDisassembler::~MCDisassembler() {
} \ No newline at end of file
diff --git a/llvm/lib/Support/MemoryObject.cpp b/llvm/lib/Support/MemoryObject.cpp
index 08e5fb75b3a..91e3ecd23a2 100644
--- a/llvm/lib/Support/MemoryObject.cpp
+++ b/llvm/lib/Support/MemoryObject.cpp
@@ -1,4 +1,4 @@
-//===- MemoryObject.cpp - Abstract memory interface -------------*- C++ -*-===//
+//===- MemoryObject.cpp - Abstract memory interface -----------------------===//
//
// The LLVM Compiler Infrastructure
//
@@ -8,30 +8,27 @@
//===----------------------------------------------------------------------===//
#include "llvm/Support/MemoryObject.h"
-
-namespace llvm {
+using namespace llvm;
- MemoryObject::~MemoryObject() {
- }
+MemoryObject::~MemoryObject() {
+}
+
+int MemoryObject::readBytes(uint64_t address,
+ uint64_t size,
+ uint8_t* buf,
+ uint64_t* copied) const {
+ uint64_t current = address;
+ uint64_t limit = getBase() + getExtent();
- int MemoryObject::readBytes(uint64_t address,
- uint64_t size,
- uint8_t* buf,
- uint64_t* copied) const {
- uint64_t current = address;
- uint64_t limit = getBase() + getExtent();
-
- while (current - address < size && current < limit) {
- if (readByte(current, &buf[(current - address)]))
- return -1;
-
- current++;
- }
+ while (current - address < size && current < limit) {
+ if (readByte(current, &buf[(current - address)]))
+ return -1;
- if (copied)
- *copied = current - address;
-
- return 0;
+ current++;
}
-
+
+ if (copied)
+ *copied = current - address;
+
+ return 0;
}
OpenPOWER on IntegriCloud