aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/lli/RPCChannel.h
AgeCommit message (Collapse)AuthorFilesLines
2014-08-13Canonicalize header guards into a common format.Benjamin Kramer1-3/+3
Add header guards to files that were missing guards. Remove #endif comments as they don't seem common in LLVM (we can easily add them back if we decide they're useful) Changes made by clang-tidy with minor tweaks. llvm-svn: 215558
2014-01-24Report lli remote IO errors consistentlyAlp Toker1-4/+2
This enables IO error reports in both the child and server processes. The scheme still isn't entirely satisfactory and output is jumbled but it beats having no output at all. This will hopefully unblock ARM support (PR18057). llvm-svn: 200017
2014-01-23lli: Factor portable messaging into a new RPCChannel facilityAlp Toker1-0/+51
The client and server now use a single unified low-level RPC core built around LLVM's existing cross-platform abstractions. llvm-svn: 199947