[clang] Fix typo in clang/www/builtins.py (PR #174304)

via cfe-commits cfe-commits at lists.llvm.org
Sat Jan 3 17:32:07 PST 2026


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-clang

Author: David Zbarsky (dzbarsky)

<details>
<summary>Changes</summary>

`__builtin_ia32_subss` appeared in the list twice; the 2nd one looks bugged

---
Full diff: https://github.com/llvm/llvm-project/pull/174304.diff


1 Files Affected:

- (modified) clang/www/builtins.py (+1-1) 


``````````diff
diff --git a/clang/www/builtins.py b/clang/www/builtins.py
index 849e6bd4a816d..2a4930cba5a81 100755
--- a/clang/www/builtins.py
+++ b/clang/www/builtins.py
@@ -33,7 +33,7 @@
     "__builtin_ia32_divsd": "_mm_div_sd",
     "__builtin_ia32_divpd": "_mm_div_pd",
     "__builtin_ia32_divps": "_mm_div_ps",
-    "__builtin_ia32_subss": "_mm_div_ss",
+    "__builtin_ia32_divss": "_mm_div_ss",
     "__builtin_ia32_andpd": "_mm_and_pd",
     "__builtin_ia32_andps": "_mm_and_ps",
     "__builtin_ia32_pand128": "_mm_and_si128",

``````````

</details>


https://github.com/llvm/llvm-project/pull/174304


More information about the cfe-commits mailing list