Mercurial > hg > CbC > CbC_llvm
view mlir/test/IR/invalid-locations.mlir @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
// RUN: mlir-opt %s -split-input-file -verify-diagnostics // ----- func.func @location_missing_l_paren() { ^bb: return loc) // expected-error {{expected '(' in location}} } // ----- func.func @location_missing_r_paren() { ^bb: return loc(unknown // expected-error {{expected ')' in location}} } // ----- func.func @location_invalid_instance() { ^bb: return loc() // expected-error {{expected location instance}} } // ----- func.func @location_name_missing_r_paren() { ^bb: return loc("foo"(unknown]) // expected-error {{expected ')' after child location of NameLoc}} } // ----- func.func @location_callsite_missing_l_paren() { ^bb: return loc(callsite unknown // expected-error {{expected '(' in callsite location}} } // ----- func.func @location_callsite_missing_callee() { ^bb: return loc(callsite( at ) // expected-error {{expected location instance}} } // ----- func.func @location_callsite_missing_at() { ^bb: return loc(callsite(unknown unknown) // expected-error {{expected 'at' in callsite location}} } // ----- func.func @location_callsite_missing_caller() { ^bb: return loc(callsite(unknown at ) // expected-error {{expected location instance}} } // ----- func.func @location_callsite_missing_r_paren() { ^bb: return loc(callsite( unknown at unknown // expected-error {{expected ')' in callsite location}} } // ----- func.func @location_fused_missing_greater() { ^bb: return loc(fused<true [unknown]) // expected-error {{expected '>' after fused location metadata}} } // ----- func.func @location_fused_missing_metadata() { ^bb: // expected-error@+1 {{expected attribute value}} return loc(fused<) } // ----- func.func @location_fused_missing_l_square() { ^bb: return loc(fused<true>unknown]) // expected-error {{expected '[' in fused location}} } // ----- func.func @location_fused_missing_r_square() { ^bb: return loc(fused[unknown) // expected-error {{expected ']' in fused location}} } // ----- func.func @location_invalid_alias() { // expected-error@+1 {{expected location, but found dialect attribute: '#foo.loc'}} return loc(#foo.loc) } // ----- func.func @location_invalid_alias() { // expected-error@+1 {{operation location alias was never defined}} return loc(#invalid_alias) } // ----- func.func @location_invalid_alias() { // expected-error@+1 {{expected location, but found 'true'}} return loc(#non_loc) } #non_loc = true