diff options
author | Eli Bendersky <eliben@google.com> | 2012-12-20 19:05:53 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2012-12-20 19:05:53 +0000 |
commit | f483ff9204a01c2e8ddab58dd6f33c2bd523cf5c (patch) | |
tree | 07df4ab2c072f342e4cfec8970f59e9503de21be /llvm/tools/lto | |
parent | 2705333253e6124dcb02bdabbaebebc68ff3a7ce (diff) | |
download | bcm5719-llvm-f483ff9204a01c2e8ddab58dd6f33c2bd523cf5c.tar.gz bcm5719-llvm-f483ff9204a01c2e8ddab58dd6f33c2bd523cf5c.zip |
Aligned bundling support. Following the discussion here:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-December/056754.html
The proposal and implementation are fully documented here:
https://sites.google.com/a/chromium.org/dev/nativeclient/pnacl/aligned-bundling-support-in-llvm
Tests will follow shortly.
llvm-svn: 170718
Diffstat (limited to 'llvm/tools/lto')
-rw-r--r-- | llvm/tools/lto/LTOModule.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/tools/lto/LTOModule.cpp b/llvm/tools/lto/LTOModule.cpp index 9d2f9c78483..9b5917de166 100644 --- a/llvm/tools/lto/LTOModule.cpp +++ b/llvm/tools/lto/LTOModule.cpp @@ -765,6 +765,10 @@ namespace { markDefined(*Symbol); } + virtual void EmitBundleAlignMode(unsigned AlignPow2) {} + virtual void EmitBundleLock() {} + virtual void EmitBundleUnlock() {} + // Noop calls. virtual void ChangeSection(const MCSection *Section) {} virtual void InitSections() {} |