diff options
author | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2014-04-06 12:49:38 +0000 |
---|---|---|
committer | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2014-04-06 12:49:38 +0000 |
commit | c31849d95470a761adb8c76f563baf26e6ae7bcd (patch) | |
tree | 250428351814b3b897beddd084fac97b79f316c3 /compiler/globals.pas | |
parent | 87496a06da21831d719eabd81808523542f1d809 (diff) | |
download | fpc-js.tar.gz |
+ initial skeleton of the js backendjs
git-svn-id: http://svn.freepascal.org/svn/fpc/branches/js@27484 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/globals.pas')
-rw-r--r-- | compiler/globals.pas | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/globals.pas b/compiler/globals.pas index ba08bcaf5d..6a60d0e248 100644 --- a/compiler/globals.pas +++ b/compiler/globals.pas @@ -473,6 +473,11 @@ interface optimizecputype : cpu_none; fputype : fpu_standard; {$endif jvm} + {$ifdef js} + cputype : cpu_none; + optimizecputype : cpu_none; + fputype : fpu_standard; + {$endif js} {$ifdef aarch64} cputype : cpu_armv8; optimizecputype : cpu_armv8; |