[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / XCore / 2009-01-08-Crash.ll
blobe81dbd8d373c78894a155ee5eb7115882a79f89a
1 ; RUN: llc < %s -march=xcore > %t1.s
2 ;; This caused a compilation failure since the
3 ;; address arithmetic was folded into the LDWSP instruction,
4 ;; resulting in a negative offset which eliminateFrameIndex was
5 ;; unable to eliminate.
6 define i32 @test(i32 %bar) nounwind readnone {
7 entry:
8         %bar_addr = alloca i32
9         %0 = getelementptr i32, ptr %bar_addr, i32 -1
10         %1 = load i32, ptr %0, align 4
11         ret i32 %1