From 5dff0454f5604912d3e319b24c341cea9163755b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Tue, 26 Aug 2025 09:28:33 +0200 Subject: [PATCH] [clang][test] Add a RUN line for the bytecode interpreter This test works with the bytecode interpreter, so add some additional testing. --- clang/test/CodeGen/builtins.c | 1 + 1 file changed, 1 insertion(+) 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 *, ...);