aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/System/Memory.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:48:15 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:48:15 +0000
commit63b3afa98460ce38a1c48d3c44ef6edfdaf37b77 (patch)
treec0f475480b9d884ebcd5fce42a6dac1a4ad1831e /include/llvm/System/Memory.h
parent14f342978cbd07436388eb7046bca96ada24cb63 (diff)
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System/Memory.h')
-rw-r--r--include/llvm/System/Memory.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/System/Memory.h b/include/llvm/System/Memory.h
index 4c360e7c68..7377593615 100644
--- a/include/llvm/System/Memory.h
+++ b/include/llvm/System/Memory.h
@@ -1,10 +1,10 @@
//===- llvm/System/Memory.h - Memory Support --------------------*- C++ -*-===//
-//
+//
// The LLVM Compiler Infrastructure
//
-// This file was developed by Reid Spencer and is distributed under the
+// This file was developed by Reid Spencer and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
// This file declares the llvm::sys::Memory class.
@@ -42,13 +42,13 @@ namespace sys {
public:
/// This method allocates a block of Read/Write/Execute memory that is
/// suitable for executing dynamically generated code (e.g. JIT). An
- /// attempt to allocate \p NumBytes bytes of virtual memory is made.
+ /// attempt to allocate \p NumBytes bytes of virtual memory is made.
/// @throws std::string if an error occurred.
/// @brief Allocate Read/Write/Execute memory.
static MemoryBlock AllocateRWX(unsigned NumBytes);
/// This method releases a block of Read/Write/Execute memory that was
- /// allocated with the AllocateRWX method. It should not be used to
+ /// allocated with the AllocateRWX method. It should not be used to
/// release any memory block allocated any other way.
/// @throws std::string if an error occurred.
/// @brief Release Read/Write/Execute memory.