[test] Pre-commit llvm.experimental.memset.pattern tests prior to MemoryLocation...
[llvm-project.git] / llvm / test / tools / gold / X86 / disable-verify.ll
blob10501db1179c077f07a03f0e507869e568f42224
1 ; RUN: llvm-as %s -o %t.o
2 ; REQUIRES: asserts
4 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext \
5 ; RUN:    --plugin-opt=disable-verify --plugin-opt=debug-pass-manager \
6 ; RUN:    -shared %t.o -o %t2.o 2>&1 | FileCheck %s
8 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext \
9 ; RUN:    --plugin-opt=debug-pass-manager \
10 ; RUN:    -shared %t.o -o %t2.o 2>&1 | FileCheck %s -check-prefix=VERIFY
12 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
13 target triple = "x86_64-unknown-linux-gnu"
15 ; -disable-verify should disable output verification from the optimization
16 ; pipeline.
17 ; CHECK-NOT: VerifierPass
19 ; VERIFY: Running pass: VerifierPass on [module]
20 ; VERIFY: Running pass: VerifierPass on [module]
22 define void @f() {
23 entry:
24   ret void