compnerd added inline comments.

================
Comment at: test/builtins/Unit/clear_cache_test.c:71
+    char* start = (char*)((uintptr_t)execution_buffer & (-get_page_size()));
+    char* end = (char*)((uintptr_t)(&execution_buffer[128+4096]) & 
(-get_page_size()));
 #if defined(_WIN32)
----------------
Shouldnt this read:

    char *end = (char *)((uintptr_t)(&execution_buffer[128 + get_page_size()] & 
(-get_page_size())));


https://reviews.llvm.org/D28849



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to