[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / gold / X86 / disable-verify.ll
blobc1ab6b06acf4c5879357ff2cfc9b6bce1f626b42
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=legacy-pass-manager \
6 ; RUN:    --plugin-opt=-debug-pass=Arguments \
7 ; RUN:    -shared %t.o -o %t2.o 2>&1 | FileCheck %s
9 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext \
10 ; RUN:    --plugin-opt=-debug-pass=Arguments --plugin-opt=legacy-pass-manager \
11 ; RUN:    -shared %t.o -o %t2.o 2>&1 | FileCheck %s -check-prefix=VERIFY
13 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
14 target triple = "x86_64-unknown-linux-gnu"
16 ; -disable-verify should disable output verification from the optimization
17 ; pipeline.
18 ; CHECK: Pass Arguments: {{.*}} -verify -
19 ; CHECK-NOT: -verify
21 ; VERIFY: Pass Arguments: {{.*}} -verify {{.*}} -verify
23 define void @f() {
24 entry:
25   ret void