aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Translation/CompilerOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Translation/CompilerOptions.cs')
-rw-r--r--ARMeilleure/Translation/CompilerOptions.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/ARMeilleure/Translation/CompilerOptions.cs b/ARMeilleure/Translation/CompilerOptions.cs
index 53998ec6..0a07ed4a 100644
--- a/ARMeilleure/Translation/CompilerOptions.cs
+++ b/ARMeilleure/Translation/CompilerOptions.cs
@@ -5,10 +5,11 @@ namespace ARMeilleure.Translation
[Flags]
enum CompilerOptions
{
- None = 0,
- SsaForm = 1 << 0,
- Optimize = 1 << 1,
- Lsra = 1 << 2,
+ None = 0,
+ SsaForm = 1 << 0,
+ Optimize = 1 << 1,
+ Lsra = 1 << 2,
+ Relocatable = 1 << 3,
MediumCq = SsaForm | Optimize,
HighCq = SsaForm | Optimize | Lsra