[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / stack-guard-memloc-vararg.ll
blobd881b6cfae3b1092b44f16b7a93d8beadfc854aa
1 ; RUN: llc -mtriple=x86_64 -O0 < %s | FileCheck %s
3 ; Check that we don't crash on this input.
4 ; CHECK-LABEL: @foo
5 ; CHECK: __stack_chk_guard
6 ; CHECK: retq
7 define hidden void @foo(i8** %ptr) #0 {
8 entry:
9   %args.addr = alloca i8*, align 8
10   %0 = va_arg i8** %args.addr, i8*
11   store i8* %0, i8** %ptr
12   ret void
15 attributes #0 = { sspstrong }
16 attributes #1 = { optsize }