diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/stack-probe-red-zone.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/stack-probe-red-zone.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/stack-probe-red-zone.ll b/llvm/test/CodeGen/X86/stack-probe-red-zone.ll index f0691980989..fff44a07ca7 100644 --- a/llvm/test/CodeGen/X86/stack-probe-red-zone.ll +++ b/llvm/test/CodeGen/X86/stack-probe-red-zone.ll @@ -1,9 +1,9 @@ ; RUN: llc -mtriple=x86_64-pc-linux-gnu < %s -o - | FileCheck %s ; Ensure that red zone usage occurs. -define void @testStackProbesOff() { +define signext i8 @testStackProbesOff() { %array = alloca [40096 x i8], align 16 - ret void + ret i8 0 ; CHECK-LABEL: testStackProbesOff: ; CHECK: subq $39976, %rsp # imm = 0x9C28 |