aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Translation/CompilerOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARMeilleure/Translation/CompilerOptions.cs')
-rw-r--r--src/ARMeilleure/Translation/CompilerOptions.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ARMeilleure/Translation/CompilerOptions.cs b/src/ARMeilleure/Translation/CompilerOptions.cs
index 0a07ed4a..d454de7f 100644
--- a/src/ARMeilleure/Translation/CompilerOptions.cs
+++ b/src/ARMeilleure/Translation/CompilerOptions.cs
@@ -5,13 +5,13 @@ 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
+ HighCq = SsaForm | Optimize | Lsra,
}
-} \ No newline at end of file
+}