mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 17:31:50 +00:00
750b351b76
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239161 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
298 B
LLVM
12 lines
298 B
LLVM
; RUN: llc -march=hexagon -filetype=obj %s -o - | llvm-objdump -d - | FileCheck %s
|
|
; Check that we generate dual stores in one packet in V4
|
|
|
|
; CHECK: 00 40 9f 52 529f4000
|
|
; CHECK: 10 10 00 f0 f0001010
|
|
|
|
define void @foo(i32* %a, i32* %b) {
|
|
store i32 0, i32* %a
|
|
store i32 0, i32* %b
|
|
ret void
|
|
}
|