Author: Timm Bäder Date: 2025-11-27T13:42:46+01:00 New Revision: 7b813c3d8095ba49a8f1e935a9b14c23490e3bb0
URL: https://github.com/llvm/llvm-project/commit/7b813c3d8095ba49a8f1e935a9b14c23490e3bb0 DIFF: https://github.com/llvm/llvm-project/commit/7b813c3d8095ba49a8f1e935a9b14c23490e3bb0.diff LOG: [clang][bytecode][test] Specify triple for Invalid.cpp This should unbreak that test on 32bit builders, e.g. https://lab.llvm.org/buildbot/#/builders/154/builds/24509 Added: Modified: clang/test/AST/ByteCode/invalid.cpp Removed: ################################################################################ diff --git a/clang/test/AST/ByteCode/invalid.cpp b/clang/test/AST/ByteCode/invalid.cpp index 2851bea0a9020..541aa634007e3 100644 --- a/clang/test/AST/ByteCode/invalid.cpp +++ b/clang/test/AST/ByteCode/invalid.cpp @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -fcxx-exceptions -std=c++20 -fexperimental-new-constant-interpreter -verify=expected,both %s -// RUN: %clang_cc1 -fcxx-exceptions -std=c++20 -verify=ref,both %s +// RUN: %clang_cc1 -triple x86_64 -fcxx-exceptions -std=c++20 -fexperimental-new-constant-interpreter -verify=expected,both %s +// RUN: %clang_cc1 -triple x86_64 -fcxx-exceptions -std=c++20 -verify=ref,both %s namespace Throw { _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
