mirror of
https://github.com/yuzu-emu/sirit.git
synced 2024-11-22 13:25:43 +01:00
Fixup build errors
This commit is contained in:
parent
4ff603bbd6
commit
3f845b7c48
@ -8,10 +8,10 @@ add_library(sirit
|
|||||||
operand.cpp
|
operand.cpp
|
||||||
operand.h
|
operand.h
|
||||||
literal.cpp
|
literal.cpp
|
||||||
lnumber.cpp
|
literal-number.cpp
|
||||||
lnumber.h
|
literal-number.h
|
||||||
lstring.cpp
|
literal-string.cpp
|
||||||
lstring.h
|
literal-string.h
|
||||||
common_types.h
|
common_types.h
|
||||||
insts.h
|
insts.h
|
||||||
insts/type.cpp
|
insts/type.cpp
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Lesser General Public License version 2.1 or any later version.
|
* Lesser General Public License version 2.1 or any later version.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lnumber.h"
|
#include "literal-number.h"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
namespace Sirit {
|
namespace Sirit {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Lesser General Public License version 2.1 or any later version.
|
* Lesser General Public License version 2.1 or any later version.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lstring.h"
|
#include "literal-string.h"
|
||||||
|
|
||||||
namespace Sirit {
|
namespace Sirit {
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common_types.h"
|
#include "common_types.h"
|
||||||
#include "lnumber.h"
|
#include "literal-number.h"
|
||||||
#include "operand.h"
|
#include "operand.h"
|
||||||
#include "sirit/sirit.h"
|
#include "sirit/sirit.h"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
#include "common_types.h"
|
#include "common_types.h"
|
||||||
#include "lnumber.h"
|
#include "literal-number.h"
|
||||||
#include "lstring.h"
|
#include "literal-string.h"
|
||||||
#include "op.h"
|
#include "op.h"
|
||||||
#include "operand.h"
|
#include "operand.h"
|
||||||
|
|
||||||
|
@ -63,8 +63,6 @@ std::vector<u8> Module::Assemble() const {
|
|||||||
return bytes;
|
return bytes;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Module::Optimize(int level) {}
|
|
||||||
|
|
||||||
void Module::AddCapability(spv::Capability capability) {
|
void Module::AddCapability(spv::Capability capability) {
|
||||||
capabilities.insert(capability);
|
capabilities.insert(capability);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user