Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Side by Side Diff: lib/Bitcode/NaCl/Analysis/NaClCompressBlockDist.cpp

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 //===-- NaClCompressBlockDist.cpp --------------------------------------------== =//
2 // Implements distribution maps used to collect block and record
3 // distributions for tool pnacl-bccompress.
4 //
5 // The LLVM Compiler Infrastructure
6 //
7 // This file is distributed under the University of Illinois Open Source
8 // License. See LICENSE.TXT for details.
9 //
10 //===----------------------------------------------------------------------===//
11
12 #include "llvm/Bitcode/NaCl/NaClCompressBlockDist.h"
13
14 using namespace llvm;
15
16 NaClCompressBlockDistElement::~NaClCompressBlockDistElement() {}
17
18 NaClBitcodeDistElement* NaClCompressBlockDistElement::
19 CreateElement(NaClBitcodeDistValue Value) const {
20 return new NaClCompressBlockDistElement(Value);
21 }
22
23 const SmallVectorImpl<NaClBitcodeDist*> *NaClCompressBlockDistElement::
24 GetNestedDistributions() const {
25 return &NestedDists;
26 }
27
28 NaClCompressBlockDistElement NaClCompressBlockDistElement::Sentinel;
OLDNEW
« no previous file with comments | « lib/Bitcode/NaCl/Analysis/NaClBitcodeValueDist.cpp ('k') | lib/Bitcode/NaCl/Analysis/NaClCompressCodeDist.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698