summaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCContext.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-24 01:03:06 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-24 01:03:06 +0000
commita11af531ec48ad84f790b9511f003ac5c934a999 (patch)
tree263ca3827523dda5ae497739709ca967f38c08ba /include/llvm/MC/MCContext.h
parentfd6325cbb23935a9c05b96e9bbfa978565029f2a (diff)
downloadexternal_llvm-a11af531ec48ad84f790b9511f003ac5c934a999.zip
external_llvm-a11af531ec48ad84f790b9511f003ac5c934a999.tar.gz
external_llvm-a11af531ec48ad84f790b9511f003ac5c934a999.tar.bz2
Start MCAsmStreamer implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCContext.h')
-rw-r--r--include/llvm/MC/MCContext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCContext.h b/include/llvm/MC/MCContext.h
index 78943fc..3ccc4da 100644
--- a/include/llvm/MC/MCContext.h
+++ b/include/llvm/MC/MCContext.h
@@ -113,7 +113,7 @@ namespace llvm {
/// allocator supports it).
/// @return The allocated memory. Could be NULL.
inline void *operator new(size_t Bytes, llvm::MCContext &C,
- size_t Alignment) throw () {
+ size_t Alignment = 16) throw () {
return C.Allocate(Bytes, Alignment);
}
/// @brief Placement delete companion to the new above.