18 lines
413 B
Plaintext
18 lines
413 B
Plaintext
|
# 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:
|
||
|
...
|