Removing use of non-standard aligned_alloc in static_linker_test.
diff --git a/build_tools/cmake/static_linker_test.c.in b/build_tools/cmake/static_linker_test.c.in
index 0155dae..5040ff5 100644
--- a/build_tools/cmake/static_linker_test.c.in
+++ b/build_tools/cmake/static_linker_test.c.in
@@ -153,8 +153,8 @@
for (int i = 0; i < IREE_INPUT_NUM; ++i) {
if (iree_status_is_ok(status)) {
- arg_buffers[i] = (IREE_INPUT_TYPE*)aligned_alloc(
- sizeof(iree_device_size_t), sizeof(IREE_INPUT_TYPE) * size[i]);
+ arg_buffers[i] = (IREE_INPUT_TYPE*)malloc(
+ sizeof(IREE_INPUT_TYPE) * size[i]);
if (arg_buffers[i] == NULL) {
status = iree_make_status(IREE_STATUS_RESOURCE_EXHAUSTED);
}