mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
57b36f1497
Fix the lit bug that enabled this "feature" (empty triple is substring of all possible target triples) and change the two outliers to use the documented * syntax. llvm-svn: 259799
18 lines
388 B
LLVM
18 lines
388 B
LLVM
; XFAIL: *
|
|
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
; CHECK: r[[T0:[0-9]+]] = CONST32(#s2)
|
|
; CHECK: memw(r29+#0) = r{{.}}
|
|
; CHECK: memw(r29+#8) = r{{.}}
|
|
|
|
%struct.large = type { i64, i64 }
|
|
|
|
@s2 = common global %struct.large zeroinitializer, align 8
|
|
|
|
define void @foo() nounwind {
|
|
entry:
|
|
call void @bar(%struct.large* byval @s2)
|
|
ret void
|
|
}
|
|
|
|
declare void @bar(%struct.large* byval)
|