aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorReinUsesLisp <[email protected]>2018-08-31 03:41:30 -0300
committerReinUsesLisp <[email protected]>2018-08-31 03:41:30 -0300
commit2bafba1a174e99308e7487f39db0aad0858400c3 (patch)
treeba3369865594e5d919515a25c2cbc5cf8752fe22 /tests
parentbeaf57a8e5cd0e26b25ffc1b8a74602aad770f88 (diff)
downloadsirit-2bafba1a174e99308e7487f39db0aad0858400c3.tar.gz
sirit-2bafba1a174e99308e7487f39db0aad0858400c3.zip
Rename Assembly -> Assemble
Diffstat (limited to 'tests')
-rw-r--r--tests/main.cpp2
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);