From e470fa2e1b9dadd58a2affcbc79013fce3d441ac Mon Sep 17 00:00:00 2001 From: dyung Date: Tue, 27 Jan 2026 11:28:32 -0800 Subject: [PATCH] Add -emit-llvm to RUN line for test added in #173311. (#178271) Should fix the test failure on buildbots that do not build the x86 backend such as https://lab.llvm.org/buildbot/#/builders/190/builds/35171 and https://lab.llvm.org/buildbot/#/builders/154/builds/26976. --- clang/test/CodeGen/stack-protector-vars.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGen/stack-protector-vars.cpp b/clang/test/CodeGen/stack-protector-vars.cpp index d11cd822cd87..88f1ce4aa5f9 100644 --- a/clang/test/CodeGen/stack-protector-vars.cpp +++ b/clang/test/CodeGen/stack-protector-vars.cpp @@ -1,7 +1,7 @@ // RUN: %clang -target x86_64-apple-darwin -emit-llvm -S -o - %s | FileCheck %s // RUN: %clang -target x86_64-apple-darwin -emit-llvm -S -o - %s -fstack-protector | FileCheck %s // RUN: %clang -target x86_64-apple-darwin -emit-llvm -S -o - %s -fstack-protector-all | FileCheck %s -// RUN: %clang -target x86_64-apple-darwin -Xclang -verify -fstack-protector-all %s -o %t -c +// RUN: %clang -target x86_64-apple-darwin -emit-llvm -Xclang -verify -fstack-protector-all %s -o %t -c typedef __SIZE_TYPE__ size_t;