diff options
author | Kostis Sagonas <[email protected]> | 2010-05-25 17:04:02 +0300 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2010-06-07 17:41:15 +0200 |
commit | 8ee659bf86b21a9270068f1a0f7278e09896e3f3 (patch) | |
tree | 55c1666de9c9b103ab49be0fcb7b246b0365c8e7 | |
parent | 0e034738334bf803b86451dd8d830c2fad001900 (diff) | |
download | otp-8ee659bf86b21a9270068f1a0f7278e09896e3f3.tar.gz otp-8ee659bf86b21a9270068f1a0f7278e09896e3f3.tar.bz2 otp-8ee659bf86b21a9270068f1a0f7278e09896e3f3.zip |
Add ppc64 return for erlang:system_info(hipe_architecture)
-rw-r--r-- | lib/hipe/cerl/erl_bif_types.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/hipe/cerl/erl_bif_types.erl b/lib/hipe/cerl/erl_bif_types.erl index be3073c0e6..7fbb4c08ac 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -1607,9 +1607,8 @@ type(erlang, system_info, 1, Xs) -> ['heap_type'] -> t_sup([t_atom('private'), t_atom('hybrid')]); ['hipe_architecture'] -> - t_sup([t_atom('amd64'), t_atom('arm'), - t_atom('powerpc'), t_atom('undefined'), - t_atom('ultrasparc'), t_atom('x86')]); + t_atoms(['amd64', 'arm', 'powerpc', 'ppc64', + 'undefined', 'ultrasparc', 'x86']); ['info'] -> t_binary(); ['internal_cpu_topology'] -> %% Undocumented internal feature |