summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86ISelLowering.h
diff options
context:
space:
mode:
authorMehdi Amini <mehdi.amini@apple.com>2015-07-09 02:09:28 +0000
committerMehdi Amini <mehdi.amini@apple.com>2015-07-09 02:09:28 +0000
commit5c183d5239f506aad444bddcd158321f5fea0e2f (patch)
tree03fc5cf08ed4aceb2c9cfc6c9d6fde0809252f0b /llvm/lib/Target/X86/X86ISelLowering.h
parent9639d650bbf60345ed174787039d5463ab4fc927 (diff)
downloadbcm5719-llvm-5c183d5239f506aad444bddcd158321f5fea0e2f.tar.gz
bcm5719-llvm-5c183d5239f506aad444bddcd158321f5fea0e2f.zip
Make getByValTypeAlignment() taking DataLayout as an argument
Summary: This change is part of a series of commits dedicated to have a single DataLayout during compilation by using always the one owned by the module. Reviewers: echristo Subscribers: yaron.keren, rafael, llvm-commits, jholewinski Differential Revision: http://reviews.llvm.org/D11038 From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 241777
Diffstat (limited to 'llvm/lib/Target/X86/X86ISelLowering.h')
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.h b/llvm/lib/Target/X86/X86ISelLowering.h
index adc1e3a6a88..7ee108cc180 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.h
+++ b/llvm/lib/Target/X86/X86ISelLowering.h
@@ -618,7 +618,8 @@ namespace llvm {
/// function arguments in the caller parameter area. For X86, aggregates
/// that contains are placed at 16-byte boundaries while the rest are at
/// 4-byte boundaries.
- unsigned getByValTypeAlignment(Type *Ty) const override;
+ unsigned getByValTypeAlignment(Type *Ty,
+ const DataLayout &DL) const override;
/// Returns the target specific optimal type for load
/// and store operations as a result of memset, memcpy, and memmove
OpenPOWER on IntegriCloud