[clang] [clang] Implement __builtin_stdc_rotate_left, __builtin_stdc_rotate_right (PR #160259)

Eli Friedman via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 25 14:48:14 PST 2025


================
@@ -1,5 +1,7 @@
 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
 
+#include<stdint.h>
----------------
efriedma-quic wrote:

I think you need to specify `-ffreestanding` to make `#include<stdint.h>` portable.

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


More information about the cfe-commits mailing list