[clang] 8cb97fb - [CodeGen] Fix check prefix mismatch on neon-immediate-ubsan.c tests

Simon Pilgrim via cfe-commits cfe-commits at lists.llvm.org
Wed Nov 11 06:58:46 PST 2020


Author: Simon Pilgrim
Date: 2020-11-11T14:57:37Z
New Revision: 8cb97fb9c9c76878afcd6678ab5311ee2766530d

URL: https://github.com/llvm/llvm-project/commit/8cb97fb9c9c76878afcd6678ab5311ee2766530d
DIFF: https://github.com/llvm/llvm-project/commit/8cb97fb9c9c76878afcd6678ab5311ee2766530d.diff

LOG: [CodeGen] Fix check prefix mismatch on neon-immediate-ubsan.c tests

Noticed while fixing unused prefix warnings,

Added: 
    

Modified: 
    clang/test/CodeGen/neon-immediate-ubsan.c

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGen/neon-immediate-ubsan.c b/clang/test/CodeGen/neon-immediate-ubsan.c
index aacf76a6338b..69a54c846421 100644
--- a/clang/test/CodeGen/neon-immediate-ubsan.c
+++ b/clang/test/CodeGen/neon-immediate-ubsan.c
@@ -1,12 +1,12 @@
 // RUN: %clang_cc1 -triple armv7s-linux-gnu -target-abi apcs-gnu -emit-llvm -o - %s \
 // RUN:     -target-feature +neon -target-cpu cortex-a8 \
 // RUN:     -fsanitize=signed-integer-overflow \
-// RUN:   | FileCheck %s --check-prefix=CHECK --check-prefix=ARMV7
+// RUN:   | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-ARMV7
 
 // RUN: %clang_cc1 -triple aarch64-unknown-unknown -emit-llvm -o - %s \
 // RUN:     -target-feature +neon -target-cpu cortex-a53 \
 // RUN:     -fsanitize=signed-integer-overflow \
-// RUN:   | FileCheck %s --check-prefix=CHECK --check-prefix=AARCH64
+// RUN:   | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-AARCH64
 
 // Verify we emit constants for "immediate" builtin arguments.
 // Emitting a scalar expression can make the immediate be generated as


        


More information about the cfe-commits mailing list