diff options
author | ReinUsesLisp <[email protected]> | 2018-08-31 03:41:30 -0300 |
---|---|---|
committer | ReinUsesLisp <[email protected]> | 2018-08-31 03:41:30 -0300 |
commit | 2bafba1a174e99308e7487f39db0aad0858400c3 (patch) | |
tree | ba3369865594e5d919515a25c2cbc5cf8752fe22 /tests | |
parent | beaf57a8e5cd0e26b25ffc1b8a74602aad770f88 (diff) | |
download | sirit-2bafba1a174e99308e7487f39db0aad0858400c3.tar.gz sirit-2bafba1a174e99308e7487f39db0aad0858400c3.zip |
Rename Assembly -> Assemble
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/main.cpp b/tests/main.cpp index b853d07..dfecb76 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -66,7 +66,7 @@ int main(int argc, char** argv) { module.Generate(); module.Optimize(2); - std::vector<std::uint8_t> code{module.Assembly()}; + std::vector<std::uint8_t> code{module.Assemble()}; FILE* file = fopen("sirit.spv", "wb"); fwrite(code.data(), 1, code.size(), file); |