Two more from the latest Copilot review: - 405 responses for GET/DELETE on /mcp now advertise `Allow: POST, OPTIONS` instead of just `POST`. Strictly per RFC 7231 the Allow header should list every supported method, and the OPTIONS handler is right above. Tests updated. - Add unit tests for the `lookup_asm_instruction` MCP tool — every other MCP tool had tests; this one didn't. Three cases: success path (MOV on amd64 returns html/tooltip), case-insensitive opcode (lowercase "mov" upper-cased before lookup), and not-found path (returns isError with helpful message). The "internal error in catch-block" case is harder to set up cleanly because z.enum on `availableAsmDocsKeys` already rejects unknown instruction sets at validation, so the catch only fires for genuine provider failures (nothing easy to mock without surgery). A third Copilot finding flagged that getSafeHash's new non-object assert could regress legacy `req.body.config` strings. Discussed and deliberately not changing the code: in-tree every caller passes an object (the default-shortener path on godbolt.org sends an object; the external-shortener path goes through a different handler). The old behaviour for string config was undefined-ish (silent no-op on nonce assignment, possible loop, possibly profane stored hash). The new behaviour fails loudly with a 500 — strictly better. Updated docs/API.md to make the body-must-be-object expectation explicit on /api/shortener since the prior docs implied but never stated it. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
How do I ?
This is a how-to guide for the user-interface presented by Compiler Explorer. This doesn't cover the details of how to set up or modify Compiler Explorer for your own needs. For that, please check the documents which already cover topics like:
- Adding a language
- Adding a compiler
- Adding a library
- Adding a tool
- and many more at compiler-explorer/docs
Fast links:
Change the assembly syntax from Intel
The option to switch assembly from Intel to AT&T syntax is present in the Output option of each compiler. If enough
space is not present, the option also presents itself as the gear symbol (⚙)
Compare the time taken by compilation and networking
This is the symbol that looks like a bar graph (📊). If your compilations are taking long, you can use this to check the time taken by:
- Networking, JavaScript, waiting for events, etc.
- Checking the cache and retrieving from it on a cache-hit
- Compilation (on force compilation or cache-miss)
- Parsing the generated assembly before presenting it
View intermediate information provided by the compilers
Though both GCC and Clang create supplementary outputs along with assembly (shown by default), and an executable (created if an executor has been added), the exact nature of the outputs and their formats differ between the compilers.
GCC allows the Tree, IPA, RTL and graph outputs, while Clang allows optimization, AST, IR and graph outputs. Some outputs (e.g. RTL or graph) also have a rich set of options in the UI to enable focussing on a particular function or compiler stage.



