<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Oct 11, 2017 at 11:26 PM, Nicolai Hähnle <span dir="ltr"><<a href="mailto:nhaehnle@gmail.com" target="_blank">nhaehnle@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I've sent some minor comments on patches #3, #5, and #6. Also, spot the typo in the title of patch #4 :)<br>
<br>
With those addressed, patches 1-8 are:<br>
<br>
Reviewed-by: Nicolai Hähnle <<a href="mailto:nicolai.haehnle@amd.com" target="_blank">nicolai.haehnle@amd.com</a>><br><div><div class="h5"></div></div></blockquote><div><br></div><div>Thanks!<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
On 11.10.2017 22:38, Jason Ekstrand wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
There are certain advantages to using uint8_t internally such as<br>
well-defined arithmetic on all platforms.  However, interfaces that<br>
work in terms of raw data should use a void* type.<br>
---<br>
  src/compiler/blob.c | 6 +++---<br>
  src/compiler/blob.h | 4 ++--<br>
  2 files changed, 5 insertions(+), 5 deletions(-)<br>
<br>
diff --git a/src/compiler/blob.c b/src/compiler/blob.c<br>
index 4ebe94b..f523423 100644<br>
--- a/src/compiler/blob.c<br>
+++ b/src/compiler/blob.c<br>
@@ -236,7 +236,7 @@ blob_write_string(struct blob *blob, const char *str)<br>
  }<br>
    void<br>
-blob_reader_init(struct blob_reader *blob, const uint8_t *data, size_t size)<br>
+blob_reader_init(struct blob_reader *blob, const void *data, size_t size)<br>
  {<br>
     blob->data = data;<br>
     blob->end = blob->data + size;<br>
@@ -278,9 +278,9 @@ blob_read_bytes(struct blob_reader *blob, size_t size)<br>
  }<br>
    void<br>
-blob_copy_bytes(struct blob_reader *blob, uint8_t *dest, size_t size)<br>
+blob_copy_bytes(struct blob_reader *blob, void *dest, size_t size)<br>
  {<br>
-   const uint8_t *bytes;<br>
+   const void *bytes;<br>
       bytes = blob_read_bytes(blob, size);<br>
     if (bytes == NULL)<br>
diff --git a/src/compiler/blob.h b/src/compiler/blob.h<br>
index 547d49b..71ffcfe 100644<br>
--- a/src/compiler/blob.h<br>
+++ b/src/compiler/blob.h<br>
@@ -269,7 +269,7 @@ blob_write_string(struct blob *blob, const char *str);<br>
   * current value is unchanged before and after the call.<br>
   */<br>
  void<br>
-blob_reader_init(struct blob_reader *blob, const uint8_t *data, size_t size);<br>
+blob_reader_init(struct blob_reader *blob, const void *data, size_t size);<br>
    /**<br>
   * Read some unstructured, fixed-size data from the current location, (and<br>
@@ -289,7 +289,7 @@ blob_read_bytes(struct blob_reader *blob, size_t size);<br>
   * it to \dest (and update the current location to just past this data)<br>
   */<br>
  void<br>
-blob_copy_bytes(struct blob_reader *blob, uint8_t *dest, size_t size);<br>
+blob_copy_bytes(struct blob_reader *blob, void *dest, size_t size);<br>
    /**<br>
   * Read a uint32_t from the current location, (and update the current location<br>
<br>
</blockquote>
<br>
<br>
-- <br></div></div>
Lerne, wie die Welt wirklich ist,<br>
Aber vergiss niemals, wie sie sein sollte.<br>
</blockquote></div><br></div></div>