aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/llvm/hipe_rtl_to_llvm.erl
diff options
context:
space:
mode:
authorAndrew Dryga <[email protected]>2017-02-14 11:32:24 +0200
committerAndrew Dryga <[email protected]>2017-02-14 11:32:52 +0200
commit5d373def7b8069eda8b6d1d2babd713933c6f472 (patch)
tree3d5103b2da56eab7b14a33504eb2c3785ee5d9a9 /lib/hipe/llvm/hipe_rtl_to_llvm.erl
parentf0bdb1a53ae84845a1ebdb72544e1f4a5719428b (diff)
downloadotp-5d373def7b8069eda8b6d1d2babd713933c6f472.tar.gz
otp-5d373def7b8069eda8b6d1d2babd713933c6f472.tar.bz2
otp-5d373def7b8069eda8b6d1d2babd713933c6f472.zip
Fixed typos in lib/hipe
Diffstat (limited to 'lib/hipe/llvm/hipe_rtl_to_llvm.erl')
-rw-r--r--lib/hipe/llvm/hipe_rtl_to_llvm.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hipe/llvm/hipe_rtl_to_llvm.erl b/lib/hipe/llvm/hipe_rtl_to_llvm.erl
index f8911c1909..208d86841f 100644
--- a/lib/hipe/llvm/hipe_rtl_to_llvm.erl
+++ b/lib/hipe/llvm/hipe_rtl_to_llvm.erl
@@ -1431,7 +1431,7 @@ relocs_to_list(Relocs) ->
%% constants/labels.
handle_relocations(Relocs, Data, Fun) ->
RelocsList = relocs_to_list(Relocs),
- %% Seperate Relocations according to their type
+ %% Separate Relocations according to their type
{CallList, AtomList, ClosureList, ClosureLabels, SwitchList} =
seperate_relocs(RelocsList),
%% Create code to declare atoms
@@ -1474,7 +1474,7 @@ handle_relocations(Relocs, Data, Fun) ->
LocalVariables = AtomLoad ++ ClosureLoad ++ ConstLoad,
{Relocs4, ExternalDeclarations, LocalVariables}.
-%% @doc Seperate relocations according to their type.
+%% @doc Separate relocations according to their type.
seperate_relocs(Relocs) ->
seperate_relocs(Relocs, [], [], [], [], []).