Skip to content
This repository has been archived by the owner on Jun 6, 2021. It is now read-only.

Commit

Permalink
Correct the pointer/word size defines for MIPS O64.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Jul 30, 2013
1 parent 2680631 commit 1ad3bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compiler/syntax/preprocessor.ex
Expand Up @@ -152,7 +152,7 @@ defmodule Flect.Compiler.Syntax.Preprocessor do
"ia64-lp64" -> {"Itanium_LP64", "64", "64"}
"mips-o32" -> {"MIPS_O32", "32", "32"}
"mips-n32" -> {"MIPS_N32", "32", "64"}
"mips-o64" -> {"MIPS_O64", "64", "32"}
"mips-o64" -> {"MIPS_O64", "32", "64"}
"mips-n64" -> {"MIPS_N64", "64", "64"}
"mips-eabi32" -> {"MIPS_EABI32", "32", "32"}
"mips-eabi64" -> {"MIPS_EABI64", "64", "64"}
Expand Down

0 comments on commit 1ad3bd1

Please sign in to comment.