Remove optimization entry

This commit is contained in:
ReinUsesLisp 2018-10-27 04:30:20 -03:00
parent 0863cd49c9
commit 4ff603bbd6
2 changed files with 0 additions and 10 deletions

View file

@ -12,9 +12,6 @@ What it does for you:
* Emit SPIR-V opcodes
* Add capabilities automatically
What it will try to do in the future:
* Optimize code
What does not do for you:
* Avoid ID duplicates (emitting the same instruction twice)
* Dump code to disk

View file

@ -35,13 +35,6 @@ class Module {
*/
std::vector<std::uint8_t> Assemble() const;
/**
* Optimizes module's IR.
* All returned references become invalid.
* @param level Level of optimization.
*/
void Optimize(int level);
/// Adds a module capability.
void AddCapability(spv::Capability capability);