Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / 2007-04-24-Huge-Stack.ll
blob61a92b767b6356afa6af35da449e7abbb32bfb0b
1 ; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
2 ; PR1348
4 ; CHECK-NOT: 4294967112
6         %struct.md5_ctx = type { i32, i32, i32, i32, [2 x i32], i32, [128 x i8], [4294967288 x i8] }
8 define ptr @md5_buffer(ptr %buffer, i64 %len, ptr %resblock) {
9 entry:
10         %ctx = alloca %struct.md5_ctx, align 16         ; <ptr> [#uses=3]
11         call void @md5_init_ctx( ptr %ctx )
12         call void @md5_process_bytes( ptr %buffer, i64 %len, ptr %ctx )
13         %tmp4 = call ptr @md5_finish_ctx( ptr %ctx, ptr %resblock )             ; <ptr> [#uses=1]
14         ret ptr %tmp4
17 declare void @md5_init_ctx(ptr)
19 declare ptr @md5_finish_ctx(ptr, ptr)
21 declare void @md5_process_bytes(ptr, i64, ptr)