tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

icu_data.S (664B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 #if defined(_WIN32) && defined(__i386__)
      6 // Mark the object as SAFESEH-enabled.
      7 .def @feat.00;
      8 .scl 3;
      9 .type 0;
     10 .endef
     11 .global @feat.00
     12 .set @feat.00, 1
     13 #endif
     14 
     15 .global ICU_DATA_SYMBOL
     16 #if defined(_WIN32)
     17 .section .rodata, "dr"
     18 #elif defined(__APPLE__)
     19 .data
     20 .const
     21 #elif defined(__wasi__)
     22 .section .rodata,"",@
     23 #else
     24 .section .rodata
     25 #endif
     26 .balign 16
     27 ICU_DATA_SYMBOL:
     28 .incbin ICU_DATA_FILE
     29 #ifdef __wasi__
     30 .size ICU_DATA_SYMBOL, . - ICU_DATA_SYMBOL
     31 #endif