aboutsummaryrefslogtreecommitdiff
path: root/lib/bc.lua
diff options
context:
space:
mode:
authorMike Pall <mike>2009-12-08 20:35:29 +0100
committerMike Pall <mike>2009-12-08 20:35:29 +0100
commit3f1f9e11f4f699ae94182d4cba158092f434a7f6 (patch)
tree88fbb674a21a1d554d4b1ee9d4ef2c5fed6a1d88 /lib/bc.lua
parent5287b9326479ea2b7dddd6f642673e58e5a7f354 (diff)
downloadluajit-3f1f9e11f4f699ae94182d4cba158092f434a7f6.tar.gz
luajit-3f1f9e11f4f699ae94182d4cba158092f434a7f6.tar.bz2
luajit-3f1f9e11f4f699ae94182d4cba158092f434a7f6.zip
Fast forward to sync public repo.
Compile math.sinh(), math.cosh(), math.tanh() and math.random(). Compile various io.*() functions. Drive the GC forward on string allocations in the parser. Improve KNUM fuse vs. load heuristics. Add abstract C call handling to IR.
Diffstat (limited to 'lib/bc.lua')
-rw-r--r--lib/bc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bc.lua b/lib/bc.lua
index 532f2493..6296174e 100644
--- a/lib/bc.lua
+++ b/lib/bc.lua
@@ -30,7 +30,7 @@
30-- print(bc.line(foo, 2)) --> 0002 KSTR 1 1 ; "hello" 30-- print(bc.line(foo, 2)) --> 0002 KSTR 1 1 ; "hello"
31-- 31--
32-- local out = { 32-- local out = {
33-- -- Do something wich each line: 33-- -- Do something with each line:
34-- write = function(t, ...) io.write(...) end, 34-- write = function(t, ...) io.write(...) end,
35-- close = function(t) end, 35-- close = function(t) end,
36-- flush = function(t) end, 36-- flush = function(t) end,