[clang] 25bedd0 - [clang][test] Add a RUN line for the bytecode interpreter (#155363)

via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 26 00:53:09 PDT 2025


Author: Timm Baeder
Date: 2025-08-26T09:53:06+02:00
New Revision: 25bedd0e97c61b6d06787c48363c9a0c1c5b1b14

URL: https://github.com/llvm/llvm-project/commit/25bedd0e97c61b6d06787c48363c9a0c1c5b1b14
DIFF: https://github.com/llvm/llvm-project/commit/25bedd0e97c61b6d06787c48363c9a0c1c5b1b14.diff

LOG: [clang][test] Add a RUN line for the bytecode interpreter (#155363)

This test works with the bytecode interpreter, so add some additional
testing.

Added: 
    

Modified: 
    clang/test/CodeGen/builtins.c

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGen/builtins.c b/clang/test/CodeGen/builtins.c
index aa9965b815983..ef08a1546e974 100644
--- a/clang/test/CodeGen/builtins.c
+++ b/clang/test/CodeGen/builtins.c
@@ -1,6 +1,7 @@
 // RUN: %clang_cc1 -emit-llvm -o %t %s
 // RUN: not grep __builtin %t
 // RUN: %clang_cc1 -emit-llvm -triple x86_64-darwin-apple -o - %s | FileCheck %s
+// RUN: %clang_cc1 -emit-llvm -triple x86_64-darwin-apple -o - %s -fexperimental-new-constant-interpreter | FileCheck %s
 
 int printf(const char *, ...);
 


        


More information about the cfe-commits mailing list