================
@@ -0,0 +1,51 @@
+// RUN: %clang_cc1 -std=c++20 -triple x86_64-unknown-linux-gnu 
-Wno-unused-value -fclangir -emit-cir %s -o %t.cir
+// RUN: FileCheck --input-file=%t.cir %s -check-prefix=CIR
+// RUN: %clang_cc1 -std=c++20 -triple x86_64-unknown-linux-gnu 
-Wno-unused-value -fclangir -emit-llvm %s -o %t-cir.ll
+// RUN: FileCheck --input-file=%t-cir.ll %s -check-prefix=LLVM
+// RUN: %clang_cc1 -std=c++20 -triple x86_64-unknown-linux-gnu 
-Wno-unused-value -emit-llvm %s -o %t.ll
+// RUN: FileCheck --input-file=%t.ll %s -check-prefix=OGCG
+
+template <typename T> void summable(T a) {
+  if (requires { a + a; }) {
+    T b = a + a;
+  }
+}
+
+// CIR: %[[A_ADDR:.*]] = cir.alloca !s32i, !cir.ptr<!s32i>, ["a", init]
+// CIR: cir.store %[[ARG_A:.*]], %[[A_ADDR]] : !s32i, !cir.ptr<!s32i>
+// CIR: cir.scope {
+// CIR:   %[[CONST_TRUE:.*]] = cir.const #true
+// CIR:   cir.if %[[CONST_TRUE]] {
----------------
andykaylor wrote:

We should definitely fold that somewhere (though only when optimizations are 
enabled). I don't like that classic codegen folds this by default at -O0.

I wouldn't expect purely constant conditions like this to be common in the 
initially generated IR, but after other optimizations it happens fairly often.

https://github.com/llvm/llvm-project/pull/171818
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to