Mercurial > hg > CbC > CbC_llvm
view mlir/test/IR/opaque_locations.mlir @ 154:f7e988d3e4cc
fix def file
author | anatofuz |
---|---|
date | Wed, 11 Mar 2020 19:23:03 +0900 |
parents | 1d019706d866 |
children | 0572611fdcc8 |
line wrap: on
line source
// RUN: mlir-opt %s -test-opaque-loc -mlir-print-debuginfo | FileCheck %s // This test verifies that debug opaque locations can be printed. #set0 = affine_set<(d0) : (1 == 0)> // CHECK: MyLocation: 0: 'foo' op // CHECK: nullptr: 'foo' op // CHECK: MyLocation: 0: 'foo' op // CHECK: MyLocation: 1: 'std.constant' op // CHECK: nullptr: 'std.constant' op // CHECK: MyLocation: 1: 'std.constant' op // CHECK-LABEL: func @inline_notation func @inline_notation() -> i32 { // CHECK: -> i32 loc("foo") // CHECK: -> i32 loc("foo") // CHECK: -> i32 loc(unknown) %1 = "foo"() : () -> i32 loc("foo") // CHECK: constant 4 : index loc(callsite("foo" at "mysource.cc":10:8)) // CHECK: constant 4 : index loc(callsite("foo" at "mysource.cc":10:8)) // CHECK: constant 4 : index loc(unknown) %2 = constant 4 : index loc(callsite("foo" at "mysource.cc":10:8)) // CHECK: } loc(unknown) affine.for %i0 = 0 to 8 { } loc(fused["foo", "mysource.cc":10:8]) // CHECK: } loc(unknown) affine.for %i0 = 0 to 8 { } loc(fused["foo", "mysource.cc":10:8, callsite("foo" at "mysource.cc":10:8)]) // CHECK: return %{{.*}} : i32 loc(unknown) return %1 : i32 loc(unknown) }