[llvm] 64ed116 - [ASan] aarch64be.ll - fix missing aarch64-registered-target requirement and incorrect passes list
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 29 09:05:24 PDT 2023
Author: Simon Pilgrim
Date: 2023-10-29T16:05:00Z
New Revision: 64ed11689d0d65291d39fa828b91ed0eee3b2c9f
URL: https://github.com/llvm/llvm-project/commit/64ed11689d0d65291d39fa828b91ed0eee3b2c9f
DIFF: https://github.com/llvm/llvm-project/commit/64ed11689d0d65291d39fa828b91ed0eee3b2c9f.diff
LOG: [ASan] aarch64be.ll - fix missing aarch64-registered-target requirement and incorrect passes list
Fixes buildbots broken by e605fba343d1f3cd2f
Added:
Modified:
llvm/test/Instrumentation/AddressSanitizer/aarch64be.ll
Removed:
################################################################################
diff --git a/llvm/test/Instrumentation/AddressSanitizer/aarch64be.ll b/llvm/test/Instrumentation/AddressSanitizer/aarch64be.ll
index 1850efaf8a927a0..eb522a0f3f31739 100644
--- a/llvm/test/Instrumentation/AddressSanitizer/aarch64be.ll
+++ b/llvm/test/Instrumentation/AddressSanitizer/aarch64be.ll
@@ -1,6 +1,6 @@
-; RUN: opt < %s -passes='asan-pipeline' -S -mtriple=aarch64-linux-gnu | FileCheck --check-prefix=CHECK-AARCH64LE %s
-
-; RUN: opt < %s -passes='asan-pipeline' -S -mtriple=aarch64_be-linux-gnu | FileCheck --check-prefix=CHECK-AARCH64BE %s
+; RUN: opt < %s -passes=asan -S -mtriple=aarch64-linux-gnu | FileCheck --check-prefix=CHECK-AARCH64LE %s
+; RUN: opt < %s -passes=asan -S -mtriple=aarch64_be-linux-gnu | FileCheck --check-prefix=CHECK-AARCH64BE %s
+; REQUIRES: aarch64-registered-target
define i32 @read_4_bytes(i32* %a) sanitize_address {
entry:
More information about the llvm-commits
mailing list