[clang] 09036be - [clang] Require x86 target for tbaa test
David Spickett via cfe-commits
cfe-commits at lists.llvm.org
Wed Dec 15 08:40:42 PST 2021
Author: David Spickett
Date: 2021-12-15T16:40:26Z
New Revision: 09036be1266355e73775c5c949a69a25312ee18a
URL: https://github.com/llvm/llvm-project/commit/09036be1266355e73775c5c949a69a25312ee18a
DIFF: https://github.com/llvm/llvm-project/commit/09036be1266355e73775c5c949a69a25312ee18a.diff
LOG: [clang] Require x86 target for tbaa test
Added in https://reviews.llvm.org/D115320.
Failing on our bots that only build Arm/AArch64 targets:
https://lab.llvm.org/buildbot/#/builders/188/builds/6951
Added:
Modified:
clang/test/CodeGen/avoidTBAAonASMstore.cpp
Removed:
################################################################################
diff --git a/clang/test/CodeGen/avoidTBAAonASMstore.cpp b/clang/test/CodeGen/avoidTBAAonASMstore.cpp
index 107963a8710bd..760cd166a9800 100644
--- a/clang/test/CodeGen/avoidTBAAonASMstore.cpp
+++ b/clang/test/CodeGen/avoidTBAAonASMstore.cpp
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
// RUN: %clang_cc1 -triple i386-unknown-linux-gnu -O2 -disable-llvm-passes -fasm-blocks %s -emit-llvm -o - | FileCheck --check-prefix=STORE-LINE %s
double foo(double z) {
// STORE-LINE-LABEL: define{{.*}} double @_Z3food
More information about the cfe-commits
mailing list