Fix #include format.

This commit is contained in:
Ben Vanik
2015-01-31 22:49:47 -08:00
parent f4f401e927
commit 00e4a4fe1b
373 changed files with 1171 additions and 1171 deletions

View File

@@ -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 {

View File

@@ -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;

View File

@@ -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 {

View File

@@ -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;

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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

View File

@@ -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

View File

@@ -7,7 +7,7 @@
******************************************************************************
*/
#include <alloy/hir/value.h>
#include "alloy/hir/value.h"
#include <cmath>

View File

@@ -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 {