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

Side by Side Diff: include/llvm/Bitcode/BitcodeStream.h

Issue 8393017: Bitcode streaming (Closed)
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « no previous file | include/llvm/Bitcode/BitstreamReader.h » ('j') | include/llvm/Support/IRReader.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 //===---- llvm/Bitcode/BitcodeStream.h - ----*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Support for streaming (lazy reading) of bitcode files on disk
11 //
12 //===----------------------------------------------------------------------===//
13
14
15 #ifndef BITCODESTREAM_H_
16 #define BITCODESTREAM_H_
17
18 #include <stddef.h>
19 #include <string>
20
21 namespace llvm {
22 class SMDiagnostic;
23
24 typedef size_t (*StreamChunkCallback)(unsigned char*, size_t);
25
26 StreamChunkCallback GetBitcodeFileStream(const std::string &Filename,
27 SMDiagnostic &Err);
28 }
29
30 #endif // BITCODESTREAM_H_
OLDNEW
« no previous file with comments | « no previous file | include/llvm/Bitcode/BitstreamReader.h » ('j') | include/llvm/Support/IRReader.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698