Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / stack-guard-memloc-vararg.ll
blobd18353a89126cce8f523bd24cb4cf6dfa14bedb2
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(ptr %ptr) #0 {
8 entry:
9   %args.addr = alloca ptr, align 8
10   %0 = va_arg ptr %args.addr, ptr
11   store ptr %0, ptr %ptr
12   ret void
15 attributes #0 = { sspstrong }
16 attributes #1 = { optsize }