
Similar to 806761a7629df268c8aed49657aeccffa6bca449 -mtriple= specifies the full target triple while -march= merely sets the architecture part of the default target triple, leaving a target triple which may not make sense. Therefore, -march= is error-prone and not recommended for tests without a target triple. The issue has been benign as we recognize $unknown-apple-darwin as ELF instead of rejecting it outrightly.
24 lines
536 B
LLVM
24 lines
536 B
LLVM
; RUN: llc -O0 -mtriple=hexagon < %s | FileCheck %s
|
|
; CHECK: and(r29,#-128)
|
|
; CHECK-DAG: add(r29,#0)
|
|
; CHECK-DAG: add(r29,#64)
|
|
; CHECK-DAG: add(r29,#96)
|
|
; CHECK-DAG: add(r29,#124)
|
|
|
|
target triple = "hexagon-unknown-unknown"
|
|
|
|
; Function Attrs: nounwind uwtable
|
|
define void @foo() #0 {
|
|
entry:
|
|
%x = alloca i32, align 4
|
|
%y = alloca i32, align 32
|
|
%z = alloca i32, align 64
|
|
%w = alloca i32, align 128
|
|
call void @bar(ptr %x, ptr %y, ptr %z, ptr %w)
|
|
ret void
|
|
}
|
|
|
|
declare void @bar(ptr, ptr, ptr, ptr) #0
|
|
|
|
attributes #0 = { nounwind }
|