[PATCH] D79914: [CodeGen][NFC] Fix test/CodeGen/pr45476.cpp to specify target triple.
Huihui Zhang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 13 18:35:01 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfd842d362662: [CodeGen][NFC] Fix test/CodeGen/pr45476.cpp to specify target triple. (authored by huihuiz).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79914/new/
https://reviews.llvm.org/D79914
Files:
clang/test/CodeGen/pr45476.cpp
Index: clang/test/CodeGen/pr45476.cpp
===================================================================
--- clang/test/CodeGen/pr45476.cpp
+++ clang/test/CodeGen/pr45476.cpp
@@ -1,4 +1,5 @@
-// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
+// RUN: %clang_cc1 -triple arm-unknown-linux-gnueabi -emit-llvm %s -o - | FileCheck -check-prefix=LIBCALL %s
+// RUN: %clang_cc1 -triple armv8-eabi -emit-llvm %s -o - | FileCheck -check-prefix=NATIVE %s
// PR45476
// This test used to get into an infinite loop,
@@ -11,8 +12,10 @@
_Atomic struct s3 a;
extern "C" void foo() {
- // CHECK-LABEL: @foo
- // CHECK: store atomic i32
+ // LIBCALL-LABEL: @foo
+ // LIBCALL: call void @__atomic_store
+ // NATIVE-LABEL: @foo
+ // NATIVE: store atomic i32
a = s3{1, 2, 3};
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79914.263906.patch
Type: text/x-patch
Size: 783 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200514/67737112/attachment.bin>
More information about the llvm-commits
mailing list