brintos

brintos / llvm-project-archived public Read only

0
0
Text · 217 B · 4614f2b Raw
10 lines · plain
1// Test hlfir.null operation parse, verify (no errors), and unparse.2 3// RUN: fir-opt %s | fir-opt | FileCheck %s4 5func.func @test() {6  // CHECK: hlfir.null !fir.ref<none>7  %0 = hlfir.null !fir.ref<none>8  return9}10