forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bitstream][CAS] Enable BitstreamWriter and BitstreamReader to use CA…
…S as a backing storage
- Loading branch information
1 parent
ad3bf04
commit 990014f
Showing
4 changed files
with
494 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include "llvm/CAS/CASID.h" | ||
#include "llvm/CAS/ObjectStore.h" | ||
|
||
namespace llvm { | ||
namespace cas { | ||
|
||
struct Node { | ||
unsigned Code; | ||
unsigned ID; | ||
SmallString<256> Data; | ||
BitstreamObjectProxy CASRef; | ||
} | ||
|
||
} // namespace cas | ||
} // namespace llvm |
Oops, something went wrong.