| Index: src/IceFixups.h
|
| diff --git a/src/IceFixups.h b/src/IceFixups.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7144aa8d093355e5b9d3c7cc942112d4ba5d4db3
|
| --- /dev/null
|
| +++ b/src/IceFixups.h
|
| @@ -0,0 +1,32 @@
|
| +//===- subzero/src/IceFixups.h - Assembler fixup kinds ----------*- C++ -*-===//
|
| +//
|
| +// The Subzero Code Generator
|
| +//
|
| +// This file is distributed under the University of Illinois Open Source
|
| +// License. See LICENSE.TXT for details.
|
| +//
|
| +//===----------------------------------------------------------------------===//
|
| +//
|
| +// This file declares generic fixup types.
|
| +//
|
| +//===----------------------------------------------------------------------===//
|
| +
|
| +#ifndef SUBZERO_SRC_ICEFIXUPS_H
|
| +#define SUBZERO_SRC_ICEFIXUPS_H
|
| +
|
| +#include "IceTypes.def"
|
| +
|
| +namespace Ice {
|
| +
|
| +enum FixupKind {
|
| + // Specify some of the most common relocation types.
|
| + FK_Abs_4 = 0,
|
| + FK_PcRel_4 = 1,
|
| +
|
| + // Target specific relocation types follow this.
|
| + FK_FirstTargetSpecific = 1 << 4
|
| +};
|
| +
|
| +} // end of namespace Ice
|
| +
|
| +#endif // SUBZERO_SRC_ICEFIXUPS_H
|
|
|