Fix #include format.
This commit is contained in:
@@ -7,9 +7,9 @@
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include <alloy/hir/block.h>
|
||||
#include "alloy/hir/block.h"
|
||||
|
||||
#include <alloy/hir/instr.h>
|
||||
#include "alloy/hir/instr.h"
|
||||
|
||||
namespace alloy {
|
||||
namespace hir {
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#ifndef ALLOY_HIR_BLOCK_H_
|
||||
#define ALLOY_HIR_BLOCK_H_
|
||||
|
||||
#include <alloy/arena.h>
|
||||
#include "alloy/arena.h"
|
||||
|
||||
namespace llvm {
|
||||
class BitVector;
|
||||
|
||||
@@ -7,14 +7,14 @@
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include <alloy/hir/hir_builder.h>
|
||||
#include "alloy/hir/hir_builder.h"
|
||||
|
||||
#include <alloy/hir/block.h>
|
||||
#include <alloy/hir/instr.h>
|
||||
#include <alloy/hir/label.h>
|
||||
#include <alloy/runtime/symbol_info.h>
|
||||
#include <alloy/string_buffer.h>
|
||||
#include <xenia/profiling.h>
|
||||
#include "alloy/hir/block.h"
|
||||
#include "alloy/hir/instr.h"
|
||||
#include "alloy/hir/label.h"
|
||||
#include "alloy/runtime/symbol_info.h"
|
||||
#include "alloy/string_buffer.h"
|
||||
#include "xenia/profiling.h"
|
||||
|
||||
namespace alloy {
|
||||
namespace hir {
|
||||
|
||||
@@ -12,11 +12,11 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include <alloy/hir/block.h>
|
||||
#include <alloy/hir/instr.h>
|
||||
#include <alloy/hir/label.h>
|
||||
#include <alloy/hir/opcodes.h>
|
||||
#include <alloy/hir/value.h>
|
||||
#include "alloy/hir/block.h"
|
||||
#include "alloy/hir/instr.h"
|
||||
#include "alloy/hir/label.h"
|
||||
#include "alloy/hir/opcodes.h"
|
||||
#include "alloy/hir/value.h"
|
||||
|
||||
namespace alloy {
|
||||
class StringBuffer;
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include <alloy/hir/instr.h>
|
||||
#include "alloy/hir/instr.h"
|
||||
|
||||
#include <alloy/hir/block.h>
|
||||
#include "alloy/hir/block.h"
|
||||
|
||||
namespace alloy {
|
||||
namespace hir {
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
#ifndef ALLOY_HIR_INSTR_H_
|
||||
#define ALLOY_HIR_INSTR_H_
|
||||
|
||||
#include <alloy/hir/opcodes.h>
|
||||
#include <alloy/hir/value.h>
|
||||
#include "alloy/hir/opcodes.h"
|
||||
#include "alloy/hir/value.h"
|
||||
|
||||
namespace alloy {
|
||||
namespace runtime {
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include <alloy/hir/opcodes.h>
|
||||
#include "alloy/hir/opcodes.h"
|
||||
|
||||
namespace alloy {
|
||||
namespace hir {
|
||||
@@ -16,7 +16,7 @@ namespace hir {
|
||||
const OpcodeInfo num##_info = { \
|
||||
flags, sig, name, num, \
|
||||
};
|
||||
#include <alloy/hir/opcodes.inl>
|
||||
#include "alloy/hir/opcodes.inl"
|
||||
#undef DEFINE_OPCODE
|
||||
|
||||
} // namespace hir
|
||||
|
||||
@@ -285,7 +285,7 @@ typedef struct {
|
||||
} OpcodeInfo;
|
||||
|
||||
#define DEFINE_OPCODE(num, name, sig, flags) extern const OpcodeInfo num##_info;
|
||||
#include <alloy/hir/opcodes.inl>
|
||||
#include "alloy/hir/opcodes.inl"
|
||||
#undef DEFINE_OPCODE
|
||||
|
||||
} // namespace hir
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include <alloy/hir/value.h>
|
||||
#include "alloy/hir/value.h"
|
||||
|
||||
#include <cmath>
|
||||
|
||||
|
||||
@@ -10,11 +10,11 @@
|
||||
#ifndef ALLOY_HIR_VALUE_H_
|
||||
#define ALLOY_HIR_VALUE_H_
|
||||
|
||||
#include <alloy/arena.h>
|
||||
#include <alloy/backend/machine_info.h>
|
||||
#include <alloy/hir/opcodes.h>
|
||||
#include <alloy/vec128.h>
|
||||
#include <poly/poly.h>
|
||||
#include "alloy/arena.h"
|
||||
#include "alloy/backend/machine_info.h"
|
||||
#include "alloy/hir/opcodes.h"
|
||||
#include "alloy/vec128.h"
|
||||
#include "poly/poly.h"
|
||||
|
||||
namespace alloy {
|
||||
namespace hir {
|
||||
|
||||
Reference in New Issue
Block a user