diff options
author | Henrik Nord <[email protected]> | 2014-03-21 16:37:11 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2014-03-21 16:37:26 +0100 |
commit | 9d46875b53ffb21bc55aec4a2c76472133ea5d1c (patch) | |
tree | 2e0fa6e8829213470acc239b8885c3a79ced63f0 /lib/hipe/misc/hipe_gensym.erl | |
parent | bbe92ec2c359373205149dabc61ef0d50784760f (diff) | |
parent | b326df0d935d221574abf58d5e2a3efddd020278 (diff) | |
download | otp-9d46875b53ffb21bc55aec4a2c76472133ea5d1c.tar.gz otp-9d46875b53ffb21bc55aec4a2c76472133ea5d1c.tar.bz2 otp-9d46875b53ffb21bc55aec4a2c76472133ea5d1c.zip |
Merge branch 'yiannist/hipe-llvm-backend'
* yiannist/hipe-llvm-backend:
Support the LLVM backend in HiPE
Implement the LLVM backend
Extend RTL API to support the LLVM backend
Add support for llvm unique symbols in hipe_gensym
Add a BIF that only returns the atom ok
Move some common code in hipe_pack_constants
Add better specs in hipe_pack_constants and cleanup
OTP-11801
Diffstat (limited to 'lib/hipe/misc/hipe_gensym.erl')
-rw-r--r-- | lib/hipe/misc/hipe_gensym.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/misc/hipe_gensym.erl b/lib/hipe/misc/hipe_gensym.erl index 84fc8fa7e8..4d2a237188 100644 --- a/lib/hipe/misc/hipe_gensym.erl +++ b/lib/hipe/misc/hipe_gensym.erl @@ -44,7 +44,7 @@ %% Types of allowable entities to set global variables for %%----------------------------------------------------------------------- --type gvarname() :: 'icode' | 'rtl' | 'arm' | 'ppc' | 'sparc' | 'x86'. +-type gvarname() :: 'icode' | 'rtl' | 'arm' | 'ppc' | 'sparc' | 'x86' | 'llvm'. %%----------------------------------------------------------------------- |