blob: 1769e20d5bc3244d70731f4a4afd8fdc55c36499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# RUN: llc -O0 -run-pass=legalizer %s -o - | FileCheck %s
--- |
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
target triple = "aarch64--"
define void @legalized_property() { ret void }
...
---
# Check that we set the "legalized" property.
# CHECK-LABEL: name: legalized_property
# CHECK: legalized: true
name: legalized_property
legalized: false
body: |
bb.0:
...
|