Files
clang-p2996/llvm/test/Transforms/SandboxVectorizer/boilerplate.ll
vporpo 52dca6ffae [SandboxVec] Boilerplate (#107431)
This patch implements the new pass and registers it with the pass
manager. For context, this is a vectorizer that operates on Sandbox IR,
which is a transactional IR on top of LLVM IR.
2024-09-05 13:38:39 -07:00

12 lines
390 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; RUN: opt -passes=sandbox-vectorizer %s -S | FileCheck %s
; This test checks that the pass was registered with the pass manager.
; TODO: Remove this test once actual tests land.
define void @boilerplate() {
; CHECK-LABEL: define void @boilerplate() {
; CHECK-NEXT: ret void
;
ret void
}