summaryrefslogtreecommitdiff
path: root/test/lld/em_asm_O0.c
Commit message (Collapse)AuthorAgeFilesLines
* Re-run scripts/test/generate_lld_tests.py. NFC (#4861)Sam Clegg2022-08-021-1/+1
|
* Clang-format c/cpp files in test directory (#4192)Heejin Ahn2021-09-291-1/+1
| | | | | | | | | This clang-formats c/cpp files in test/ directory, and updates clang-format-diff.sh so that it does not ignore test/ directory anymore. bigswitch.cpp is excluded from formatting, because there are big commented-out code blocks, and apparently clang-format messes up formatting in them. Also to make matters worse, different clang-format versions do different things on those commented-out code blocks.
* Add a C source for for test/lld/em_asm_O0 (#3045)Alon Zakai2020-08-171-0/+8
That had just a wat file, with no C. This adds a C file as best I can guess - looks pretty close - and updates all the lld tests with scripts/test/generate_lld_tests.py and ./auto_update_tests.py lld As the diff shows, the handwritten wat was very different than what emcc+lld emit now. I think we must have switches EM_ASMs to be variadic at some point? That is what they currently are, and would explain the diff. See the discussion that led to this in #3044