[Mlir-commits] [mlir] 7d815ab - [mlir][NFC] Split out various tests from IR/invalid.mlir

River Riddle llvmlistbot at llvm.org
Tue Jul 19 16:34:54 PDT 2022


Author: River Riddle
Date: 2022-07-19T16:34:35-07:00
New Revision: 7d815ab9b405f5832618264c5d0ef196eacf37a3

URL: https://github.com/llvm/llvm-project/commit/7d815ab9b405f5832618264c5d0ef196eacf37a3
DIFF: https://github.com/llvm/llvm-project/commit/7d815ab9b405f5832618264c5d0ef196eacf37a3.diff

LOG: [mlir][NFC] Split out various tests from IR/invalid.mlir

This file contains a huge number of tests that should really be in
different dialect/files. It is monolothic because of the legacy
surrounding the old standard dialect, affine operations, etc. Splitting
this up makes the tests much more maintainable given that they are now
group with other similar tests.

Added: 
    mlir/test/IR/invalid-builtin-attributes.mlir
    mlir/test/IR/invalid-builtin-types.mlir

Modified: 
    mlir/test/Dialect/Affine/invalid.mlir
    mlir/test/Dialect/Arithmetic/invalid.mlir
    mlir/test/Dialect/Func/invalid.mlir
    mlir/test/IR/invalid-affinemap.mlir
    mlir/test/IR/invalid.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/test/Dialect/Affine/invalid.mlir b/mlir/test/Dialect/Affine/invalid.mlir
index 79cdeb9588fc..03f4f124ddef 100644
--- a/mlir/test/Dialect/Affine/invalid.mlir
+++ b/mlir/test/Dialect/Affine/invalid.mlir
@@ -390,3 +390,98 @@ func.func @result_number() {
   }
   return
 }
+
+// -----
+
+func.func @malformed_for_percent() {
+  affine.for i = 1 to 10 { // expected-error {{expected SSA operand}}
+
+// -----
+
+func.func @malformed_for_equal() {
+  affine.for %i 1 to 10 { // expected-error {{expected '='}}
+
+// -----
+
+func.func @malformed_for_to() {
+  affine.for %i = 1 too 10 { // expected-error {{expected 'to' between bounds}}
+  }
+}
+
+// -----
+
+func.func @incomplete_for() {
+  affine.for %i = 1 to 10 step 2
+}        // expected-error @-1 {{expected '{' to begin a region}}
+
+// -----
+
+#map0 = affine_map<(d0) -> (d0 floordiv 4)>
+
+func.func @reference_to_iv_in_bound() {
+  // expected-error at +2 {{region entry argument '%i0' is already in use}}
+  // expected-note at +1 {{previously referenced here}}
+  affine.for %i0 = #map0(%i0) to 10 {
+  }
+}
+
+// -----
+
+func.func @nonconstant_step(%1 : i32) {
+  affine.for %2 = 1 to 5 step %1 { // expected-error {{expected attribute value}}
+
+// -----
+
+func.func @for_negative_stride() {
+  affine.for %i = 1 to 10 step -1
+}        // expected-error at -1 {{expected step to be representable as a positive signed integer}}
+
+// -----
+
+func.func @invalid_if_conditional2() {
+  affine.for %i = 1 to 10 {
+    affine.if affine_set<(i)[N] : (i >= )>  // expected-error {{expected affine expression}}
+  }
+}
+
+// -----
+
+func.func @invalid_if_conditional3() {
+  affine.for %i = 1 to 10 {
+    affine.if affine_set<(i)[N] : (i == )>  // expected-error {{expected affine expression}}
+  }
+}
+
+// -----
+
+func.func @invalid_if_conditional6() {
+  affine.for %i = 1 to 10 {
+    affine.if affine_set<(i) : (i)> // expected-error {{expected '== affine-expr' or '>= affine-expr' at end of affine constraint}}
+  }
+}
+
+// -----
+// TODO: support affine.if (1)?
+func.func @invalid_if_conditional7() {
+  affine.for %i = 1 to 10 {
+    affine.if affine_set<(i) : (1)> // expected-error {{expected '== affine-expr' or '>= affine-expr' at end of affine constraint}}
+  }
+}
+
+// -----
+
+func.func @missing_for_max(%arg0: index, %arg1: index, %arg2: memref<100xf32>) {
+  // expected-error @+1 {{lower loop bound affine map with multiple results requires 'max' prefix}}
+  affine.for %i0 = affine_map<()[s]->(0,s-1)>()[%arg0] to %arg1 {
+  }
+  return
+}
+
+// -----
+
+func.func @missing_for_min(%arg0: index, %arg1: index, %arg2: memref<100xf32>) {
+  // expected-error @+1 {{upper loop bound affine map with multiple results requires 'min' prefix}}
+  affine.for %i0 = %arg0 to affine_map<()[s]->(100,s+1)>()[%arg1] {
+  }
+  return
+}

diff  --git a/mlir/test/Dialect/Arithmetic/invalid.mlir b/mlir/test/Dialect/Arithmetic/invalid.mlir
index 47f5f1f511c1..19c427b5e744 100644
--- a/mlir/test/Dialect/Arithmetic/invalid.mlir
+++ b/mlir/test/Dialect/Arithmetic/invalid.mlir
@@ -713,3 +713,11 @@ func.func @bitcast_fl_to_scalable(%arg0 : vector<4xf32>) {
   %0 = arith.bitcast %arg0 : vector<4xf32> to vector<[4]xi32>
   return
 }
+
+// -----
+
+func.func @func() {
+  %c0 = arith.constant  // expected-error {{expected attribute value}}
+
+  %x = arith.constant 1 : i32
+}

diff  --git a/mlir/test/Dialect/Func/invalid.mlir b/mlir/test/Dialect/Func/invalid.mlir
index d9d67f5944a3..34eda5e7b274 100644
--- a/mlir/test/Dialect/Func/invalid.mlir
+++ b/mlir/test/Dialect/Func/invalid.mlir
@@ -1,4 +1,4 @@
-// RUN: mlir-opt -split-input-file %s -verify-diagnostics
+// RUN: mlir-opt -allow-unregistered-dialect -split-input-file %s -verify-diagnostics
 
 func.func @unsupported_attribute() {
   // expected-error @+1 {{invalid kind of attribute specified}}
@@ -17,3 +17,177 @@ func.func @call() {
   %0:2 = call @return_i32_f32() : () -> (f32, i32)
   return
 }
+
+// -----
+
+func.func @resulterror() -> i32 {
+^bb42:
+  return    // expected-error {{'func.return' op has 0 operands, but enclosing function (@resulterror) returns 1}}
+}
+
+// -----
+
+func.func @return_type_mismatch() -> i32 {
+  %0 = "foo"() : ()->f32
+  return %0 : f32  // expected-error {{type of return operand 0 ('f32') doesn't match function result type ('i32') in function @return_type_mismatch}}
+}
+
+// -----
+
+func.func @return_inside_loop() {
+  affine.for %i = 1 to 100 {
+    // expected-error at +1 {{'func.return' op expects parent op 'func.func'}}
+    func.return
+  }
+  return
+}
+
+// -----
+
+// expected-error at +1 {{expected non-function type}}
+func.func @func_variadic(...)
+
+// -----
+
+func.func @foo() {
+^bb0:
+  %x = constant @foo : (i32) -> ()  // expected-error {{reference to function with mismatched type}}
+  return
+}
+
+// -----
+
+func.func @undefined_function() {
+^bb0:
+  %x = constant @qux : (i32) -> ()  // expected-error {{reference to undefined function 'qux'}}
+  return
+}
+
+// -----
+
+#map1 = affine_map<(i)[j] -> (i+j)>
+
+func.func @bound_symbol_mismatch(%N : index) {
+  affine.for %i = #map1(%N) to 100 {
+  // expected-error at -1 {{symbol operand count and affine map symbol count must match}}
+  }
+  return
+}
+
+// -----
+
+#map1 = affine_map<(i)[j] -> (i+j)>
+
+func.func @bound_dim_mismatch(%N : index) {
+  affine.for %i = #map1(%N, %N)[%N] to 100 {
+  // expected-error at -1 {{dim operand count and affine map dim count must match}}
+  }
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  affine.for %i = 1 to 9223372036854775810 {
+  // expected-error at -1 {{integer constant out of range for attribute}}
+  }
+  return
+}
+
+// -----
+
+func.func @max_in_upper_bound(%N : index) {
+  affine.for %i = 1 to max affine_map<(i)->(N, 100)> { //expected-error {{expected attribute value}}
+  }
+  return
+}
+
+// -----
+
+func.func @step_typo() {
+  affine.for %i = 1 to 100 step -- 1 { //expected-error {{expected constant integer}}
+  }
+  return
+}
+
+// -----
+
+func.func @invalid_bound_map(%N : i32) {
+  affine.for %i = 1 to affine_map<(i)->(j)>(%N) { //expected-error {{use of undeclared identifier}}
+  }
+  return
+}
+
+// -----
+
+// expected-error @+1 {{expected '(' in integer set constraint list}}
+#set0 = affine_set<(i)[N, M] : )i >= 0)>
+
+// -----
+#set0 = affine_set<(i)[N] : (i >= 0, N - i >= 0)>
+
+func.func @invalid_if_operands1(%N : index) {
+  affine.for %i = 1 to 10 {
+    affine.if #set0(%i) {
+    // expected-error at -1 {{symbol operand count and integer set symbol count must match}}
+
+// -----
+#set0 = affine_set<(i)[N] : (i >= 0, N - i >= 0)>
+
+func.func @invalid_if_operands2(%N : index) {
+  affine.for %i = 1 to 10 {
+    affine.if #set0()[%N] {
+    // expected-error at -1 {{dim operand count and integer set dim count must match}}
+
+// -----
+#set0 = affine_set<(i)[N] : (i >= 0, N - i >= 0)>
+
+func.func @invalid_if_operands3(%N : index) {
+  affine.for %i = 1 to 10 {
+    affine.if #set0(%i)[%i] {
+    // expected-error at -1 {{operand cannot be used as a symbol}}
+    }
+  }
+  return
+}
+
+// -----
+
+func.func @redundant_signature(%a : i32) -> () {
+^bb0(%b : i32):  // expected-error {{invalid block name in region with named arguments}}
+  return
+}
+
+// -----
+
+func.func @mixed_named_arguments(%a : i32,
+                               f32) -> () {
+    // expected-error @-1 {{expected SSA identifier}}
+  return
+}
+
+// -----
+
+func.func @mixed_named_arguments(f32,
+                               %a : i32) -> () { // expected-error {{expected type instead of SSA identifier}}
+  return
+}
+
+// -----
+
+// expected-error @+1 {{@ identifier expected to start with letter or '_'}}
+func.func @$invalid_function_name()
+
+// -----
+
+// expected-error @+1 {{arguments may only have dialect attributes}}
+func.func @invalid_func_arg_attr(i1 {non_dialect_attr = 10})
+
+// -----
+
+// expected-error @+1 {{results may only have dialect attributes}}
+func.func @invalid_func_result_attr() -> (i1 {non_dialect_attr = 10})
+
+// -----
+
+func.func @foo() {} // expected-error {{expected non-empty function body}}

diff  --git a/mlir/test/IR/invalid-affinemap.mlir b/mlir/test/IR/invalid-affinemap.mlir
index 0ce58103b510..533cc23ec1ed 100644
--- a/mlir/test/IR/invalid-affinemap.mlir
+++ b/mlir/test/IR/invalid-affinemap.mlir
@@ -106,3 +106,15 @@
 // -----
 #ABC = affine_map<(i,j) -> (i+j)>
 #ABC = affine_map<(i,j) -> (i+j)>  // expected-error {{redefinition of attribute alias id 'ABC'}}
+
+// -----
+
+#map = affine_map<(d0) -> (%)>  // expected-error {{invalid SSA name}}
+
+// -----
+
+func.func @invalid_affine_structure() {
+  %c0 = arith.constant 0 : index
+  %idx = affine.apply affine_map<(d0, d1)> (%c0, %c0) // expected-error {{expected '->' or ':'}}
+  return
+}

diff  --git a/mlir/test/IR/invalid-builtin-attributes.mlir b/mlir/test/IR/invalid-builtin-attributes.mlir
new file mode 100644
index 000000000000..f6df53f0248e
--- /dev/null
+++ b/mlir/test/IR/invalid-builtin-attributes.mlir
@@ -0,0 +1,521 @@
+// RUN: mlir-opt -allow-unregistered-dialect %s -split-input-file -verify-diagnostics
+
+func.func @elementsattr_non_tensor_type() -> () {
+  "foo"(){bar = dense<[4]> : i32} : () -> () // expected-error {{elements literal must be a ranked tensor or vector type}}
+}
+
+// -----
+
+func.func @elementsattr_non_ranked() -> () {
+  "foo"(){bar = dense<[4]> : tensor<?xi32>} : () -> () // expected-error {{elements literal type must have static shape}}
+}
+
+// -----
+
+func.func @elementsattr_shape_mismatch() -> () {
+  "foo"(){bar = dense<[4]> : tensor<5xi32>} : () -> () // expected-error {{inferred shape of elements literal ([1]) does not match type ([5])}}
+}
+
+// -----
+
+func.func @elementsattr_invalid() -> () {
+  "foo"(){bar = dense<[4, [5]]> : tensor<2xi32>} : () -> () // expected-error {{tensor literal is invalid; ranks are not consistent between elements}}
+}
+
+// -----
+
+func.func @elementsattr_badtoken() -> () {
+  "foo"(){bar = dense<[tf_opaque]> : tensor<1xi32>} : () -> () // expected-error {{expected element literal of primitive type}}
+}
+
+// -----
+
+func.func @elementsattr_floattype1() -> () {
+  // expected-error at +1 {{expected integer elements, but parsed floating-point}}
+  "foo"(){bar = dense<[4.0]> : tensor<1xi32>} : () -> ()
+}
+
+// -----
+
+func.func @elementsattr_floattype1() -> () {
+  // expected-error at +1 {{expected integer elements, but parsed floating-point}}
+  "foo"(){bar = dense<4.0> : tensor<i32>} : () -> ()
+}
+
+// -----
+
+func.func @elementsattr_floattype2() -> () {
+  // expected-error at +1 {{expected floating-point elements, but parsed integer}}
+  "foo"(){bar = dense<[4]> : tensor<1xf32>} : () -> ()
+}
+
+// -----
+
+func.func @elementsattr_toolarge1() -> () {
+  "foo"(){bar = dense<[777]> : tensor<1xi8>} : () -> () // expected-error {{integer constant out of range}}
+}
+
+// -----
+
+// expected-error at +1 {{parsed zero elements, but type ('tensor<i64>') expected at least 1}}
+#attr = dense<> : tensor<i64>
+
+// -----
+
+func.func @elementsattr_toolarge2() -> () {
+  "foo"(){bar = dense<[-777]> : tensor<1xi8>} : () -> () // expected-error {{integer constant out of range}}
+}
+
+// -----
+
+"foo"(){bar = dense<[()]> : tensor<complex<i64>>} : () -> () // expected-error {{expected element literal of primitive type}}
+
+// -----
+
+"foo"(){bar = dense<[(10)]> : tensor<complex<i64>>} : () -> () // expected-error {{expected ',' between complex elements}}
+
+// -----
+
+"foo"(){bar = dense<[(10,)]> : tensor<complex<i64>>} : () -> () // expected-error {{expected element literal of primitive type}}
+
+// -----
+
+"foo"(){bar = dense<[(10,10]> : tensor<complex<i64>>} : () -> () // expected-error {{expected ')' after complex elements}}
+
+// -----
+
+func.func @elementsattr_malformed_opaque() -> () {
+  "foo"(){bar = opaque<10, "0xQZz123"> : tensor<1xi8>} : () -> () // expected-error {{expected dialect namespace}}
+}
+
+// -----
+
+func.func @elementsattr_malformed_opaque1() -> () {
+  "foo"(){bar = opaque<"_", "0xQZz123"> : tensor<1xi8>} : () -> () // expected-error {{expected string containing hex digits starting with `0x`}}
+}
+
+// -----
+
+func.func @elementsattr_malformed_opaque2() -> () {
+  "foo"(){bar = opaque<"_", "00abc"> : tensor<1xi8>} : () -> () // expected-error {{expected string containing hex digits starting with `0x`}}
+}
+
+// -----
+
+func.func @mi() {
+  // expected-error @+1 {{expected element literal of primitive type}}
+  "fooi64"(){bar = sparse<vector<1xi64>,[,[,1]
+
+// -----
+
+func.func @invalid_tensor_literal() {
+  // expected-error @+1 {{expected 1-d tensor for sparse element values}}
+  "foof16"(){bar = sparse<[[0, 0, 0]],  [[-2.0]]> : vector<1x1x1xf16>} : () -> ()
+
+// -----
+
+func.func @invalid_tensor_literal() {
+  // expected-error @+1 {{expected element literal of primitive type}}
+  "fooi16"(){bar = sparse<[[1, 1, 0], [0, 1, 0], [0,, [[0, 0, 0]], [-2.0]> : tensor<2x2x2xi16>} : () -> ()
+
+// -----
+
+func.func @invalid_tensor_literal() {
+  // expected-error @+1 {{sparse index #0 is not contained within the value shape, with index=[1, 1], and type='tensor<1x1xi16>'}}
+  "fooi16"(){bar = sparse<1, 10> : tensor<1x1xi16>} : () -> ()
+
+// -----
+
+func.func @hexadecimal_float_leading_minus() {
+  // expected-error @+1 {{hexadecimal float literal should not have a leading minus}}
+  "foo"() {value = -0x7fff : f16} : () -> ()
+}
+
+// -----
+
+func.func @hexadecimal_float_literal_overflow() {
+  // expected-error @+1 {{hexadecimal float constant out of range for type}}
+  "foo"() {value = 0xffffffff : f16} : () -> ()
+}
+
+// -----
+
+func.func @decimal_float_literal() {
+  // expected-error @+2 {{unexpected decimal integer literal for a floating point value}}
+  // expected-note @+1 {{add a trailing dot to make the literal a float}}
+  "foo"() {value = 42 : f32} : () -> ()
+}
+
+// -----
+
+func.func @float_in_int_tensor() {
+  // expected-error @+1 {{expected integer elements, but parsed floating-point}}
+  "foo"() {bar = dense<[42.0, 42]> : tensor<2xi32>} : () -> ()
+}
+
+// -----
+
+func.func @float_in_bool_tensor() {
+  // expected-error @+1 {{expected integer elements, but parsed floating-point}}
+  "foo"() {bar = dense<[true, 42.0]> : tensor<2xi1>} : () -> ()
+}
+
+// -----
+
+func.func @decimal_int_in_float_tensor() {
+  // expected-error @+1 {{expected floating-point elements, but parsed integer}}
+  "foo"() {bar = dense<[42, 42.0]> : tensor<2xf32>} : () -> ()
+}
+
+// -----
+
+func.func @bool_in_float_tensor() {
+  // expected-error @+1 {{expected floating-point elements, but parsed integer}}
+  "foo"() {bar = dense<[42.0, true]> : tensor<2xf32>} : () -> ()
+}
+
+// -----
+
+func.func @hexadecimal_float_leading_minus_in_tensor() {
+  // expected-error @+1 {{hexadecimal float literal should not have a leading minus}}
+  "foo"() {bar = dense<-0x7FFFFFFF> : tensor<2xf32>} : () -> ()
+}
+
+// -----
+
+// Check that we report an error when a value could be parsed, but does not fit
+// into the specified type.
+func.func @hexadecimal_float_too_wide_for_type_in_tensor() {
+  // expected-error @+1 {{hexadecimal float constant out of range for type}}
+  "foo"() {bar = dense<0x7FF0000000000000> : tensor<2xf32>} : () -> ()
+}
+
+// -----
+
+// Check that we report an error when a value is too wide to be parsed.
+func.func @hexadecimal_float_too_wide_in_tensor() {
+  // expected-error @+1 {{hexadecimal float constant out of range for type}}
+  "foo"() {bar = dense<0x7FFFFFF0000000000000> : tensor<2xf32>} : () -> ()
+}
+
+// -----
+
+func.func @integer_too_wide_in_tensor() {
+  // expected-error @+1 {{integer constant out of range for type}}
+  "foo"() {bar = dense<0xFFFFFFFFFFFFFF> : tensor<2xi16>} : () -> ()
+}
+
+// -----
+
+func.func @bool_literal_in_non_bool_tensor() {
+  // expected-error @+1 {{expected i1 type for 'true' or 'false' values}}
+  "foo"() {bar = dense<true> : tensor<2xi16>} : () -> ()
+}
+
+// -----
+
+func.func @negative_value_in_unsigned_int_attr() {
+  // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
+  "foo"() {bar = -5 : ui32} : () -> ()
+}
+
+// -----
+
+func.func @negative_value_in_unsigned_vector_attr() {
+  // expected-error @+1 {{expected unsigned integer elements, but parsed negative value}}
+  "foo"() {bar = dense<[5, -5]> : vector<2xui32>} : () -> ()
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -129 : i8
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 256 : i8
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -129 : si8
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 129 : si8
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
+    attr = -1 : ui8
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 256 : ui8
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -32769 : i16
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 65536 : i16
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -32769 : si16
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 32768 : si16
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
+    attr = -1 : ui16
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 65536: ui16
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -2147483649 : i32
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 4294967296 : i32
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -2147483649 : si32
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 2147483648 : si32
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
+    attr = -1 : ui32
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 4294967296 : ui32
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -9223372036854775809 : i64
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 18446744073709551616 : i64
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = -9223372036854775809 : si64
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 9223372036854775808 : si64
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
+    attr = -1 : ui64
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 18446744073709551616 : ui64
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @really_large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 79228162514264337593543950336 : ui96
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @really_large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 79228162514264337593543950336 : i96
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @really_large_bound() {
+  "test.out_of_range_attribute"() {
+    // expected-error @+1 {{integer constant out of range for attribute}}
+    attr = 39614081257132168796771975168 : si96
+  } : () -> ()
+  return
+}
+
+// -----
+
+func.func @duplicate_dictionary_attr_key() {
+  // expected-error @+1 {{duplicate key 'a' in dictionary attribute}}
+  "foo.op"() {a, a} : () -> ()
+}
+
+// -----
+
+// expected-error at +1 {{expected ',' or ']'}}
+"f"() { b = [@m:
+
+// -----
+
+"       // expected-error {{expected}}
+"
+
+// -----
+
+// expected-error at +1 {{expected '"' in string literal}}
+"J// -----
+
+"       // expected-error {{expected}}

diff  --git a/mlir/test/IR/invalid-builtin-types.mlir b/mlir/test/IR/invalid-builtin-types.mlir
new file mode 100644
index 000000000000..cf1421c4b661
--- /dev/null
+++ b/mlir/test/IR/invalid-builtin-types.mlir
@@ -0,0 +1,169 @@
+// RUN: mlir-opt -allow-unregistered-dialect %s -split-input-file -verify-diagnostics
+
+func.func @illegaltype(i) // expected-error {{expected non-function type}}
+
+// -----
+
+func.func @illegaltype() {
+  %0 = arith.constant dense<0> : <vector 4 x f32> : vector<4 x f32> // expected-error {{expected non-function type}}
+}
+
+// -----
+
+func.func @nestedtensor(tensor<tensor<i8>>) -> () // expected-error {{invalid tensor element type}}
+
+// -----
+
+// expected-error at +1 {{invalid dimension}}
+#large_dim = tensor<9223372036854775808xf32>
+
+// -----
+
+func.func @illegalmemrefelementtype(memref<?xtensor<i8>>) -> () // expected-error {{invalid memref element type}}
+
+// -----
+
+func.func @illegalunrankedmemrefelementtype(memref<*xtensor<i8>>) -> () // expected-error {{invalid memref element type}}
+
+// -----
+// Test no map in memref type.
+func.func @memrefs(memref<2x4xi8, >) // expected-error {{expected list element}}
+
+// -----
+// Test non-existent map in memref type.
+func.func @memrefs(memref<2x4xi8, #map7>) // expected-error {{undefined symbol alias id 'map7'}}
+
+// -----
+// Test unsupported memory space.
+func.func @memrefs(memref<2x4xi8, i8>) // expected-error {{unsupported memory space Attribute}}
+
+// -----
+// Test non-existent map in map composition of memref type.
+#map0 = affine_map<(d0, d1) -> (d0, d1)>
+
+func.func @memrefs(memref<2x4xi8, #map0, #map8>) // expected-error {{undefined symbol alias id 'map8'}}
+
+// -----
+// Test multiple memory space error.
+#map0 = affine_map<(d0, d1) -> (d0, d1)>
+func.func @memrefs(memref<2x4xi8, #map0, 1, 2>) // expected-error {{multiple memory spaces specified in memref type}}
+
+// -----
+// Test affine map after memory space.
+#map0 = affine_map<(d0, d1) -> (d0, d1)>
+#map1 = affine_map<(d0, d1) -> (d0, d1)>
+
+func.func @memrefs(memref<2x4xi8, #map0, 1, #map1>) // expected-error {{expected memory space to be last in memref type}}
+
+// -----
+// Test dimension mismatch between memref and layout map.
+// The error must be emitted even for the trivial identity layout maps that are
+// dropped in type creation.
+#map0 = affine_map<(d0, d1) -> (d0, d1)>
+func.func @memrefs(memref<42xi8, #map0>) // expected-error {{memref layout mismatch between rank and affine map: 1 != 2}}
+
+// -----
+
+func.func @memref_space_after_strides(memref<42x42xi8, 0, offset: ?, strides: [?, ?]>) // expected-error {{expected memory space to be last in memref type}}
+
+// -----
+
+func.func @memref_stride_missing_colon(memref<42x42xi8, offset ?, strides: [?, ?]>) // expected-error {{expected colon after `offset` keyword}}
+
+// -----
+
+func.func @memref_stride_invalid_offset(memref<42x42xi8, offset: [], strides: [?, ?]>) // expected-error {{invalid offset}}
+
+// -----
+
+func.func @memref_stride_missing_strides(memref<42x42xi8, offset: 0 [?, ?]>) // expected-error {{expected comma after offset value}}
+
+// -----
+
+func.func @memref_stride_missing_strides(memref<42x42xi8, offset: 0, [?, ?]>) // expected-error {{expected `strides` keyword after offset specification}}
+
+// -----
+
+func.func @memref_stride_missing_colon_2(memref<42x42xi8, offset: 0, strides [?, ?]>) // expected-error {{expected colon after `strides` keyword}}
+
+// -----
+
+// expected-error @+1 {{expected '['}}
+func.func @memref_stride_invalid_strides(memref<42x42xi8, offset: 0, strides: ()>)
+
+// -----
+
+func.func @memref_zero_stride(memref<42x42xi8, offset: ?, strides: [0, ?]>) // expected-error {{invalid memref stride}}
+
+// -----
+
+func.func @tensor_encoding_mismatch(%arg0: tensor<8xi32, "enc">) -> (tensor<8xi32>) { // expected-note {{prior use here}}
+  return %arg0: tensor<8xi32> // expected-error {{use of value '%arg0' expects 
diff erent type than prior uses: 'tensor<8xi32>' vs 'tensor<8xi32, "enc">'}}
+}
+
+// -----
+
+func.func @illegaltype(i21312312323120) // expected-error {{invalid integer width}}
+
+// -----
+
+// Test no nested vector.
+// expected-error at +1 {{vector elements must be int/index/float type}}
+func.func @vectors(vector<1 x vector<1xi32>>, vector<2x4xf32>)
+
+// -----
+
+// expected-error @+1 {{vector types must have positive constant sizes}}
+func.func @zero_vector_type() -> vector<0xi32>
+
+// -----
+
+// expected-error @+1 {{vector types must have positive constant sizes}}
+func.func @zero_in_vector_type() -> vector<1x0xi32>
+
+// -----
+
+// expected-error @+1 {{expected non-function type}}
+func.func @negative_vector_size() -> vector<-1xi32>
+
+// -----
+
+// expected-error @+1 {{expected non-function type}}
+func.func @negative_in_vector_size() -> vector<1x-1xi32>
+
+// -----
+
+// expected-error @+1 {{expected non-function type}}
+func.func @negative_memref_size() -> memref<-1xi32>
+
+// -----
+
+// expected-error @+1 {{expected non-function type}}
+func.func @negative_in_memref_size() -> memref<1x-1xi32>
+
+// -----
+
+// expected-error @+1 {{expected non-function type}}
+func.func @negative_tensor_size() -> tensor<-1xi32>
+
+// -----
+
+// expected-error @+1 {{expected non-function type}}
+func.func @negative_in_tensor_size() -> tensor<1x-1xi32>
+
+// -----
+
+// expected-error @+1 {{invalid element type for complex}}
+func.func @bad_complex(complex<memref<2x4xi8>>)
+
+// -----
+
+// expected-error @+1 {{expected '<' in complex type}}
+func.func @bad_complex(complex memref<2x4xi8>>)
+
+// -----
+
+// expected-error @+1 {{expected '>' in complex type}}
+func.func @bad_complex(complex<i32)
+
+// -----

diff  --git a/mlir/test/IR/invalid.mlir b/mlir/test/IR/invalid.mlir
index 1bc82f678757..0bd39f62a03b 100644
--- a/mlir/test/IR/invalid.mlir
+++ b/mlir/test/IR/invalid.mlir
@@ -6,109 +6,6 @@
 // Check 
diff erent error cases.
 // -----
 
-func.func @illegaltype(i) // expected-error {{expected non-function type}}
-
-// -----
-
-func.func @illegaltype() {
-  %0 = arith.constant dense<0> : <vector 4 x f32> : vector<4 x f32> // expected-error {{expected non-function type}}
-}
-
-// -----
-
-func.func @nestedtensor(tensor<tensor<i8>>) -> () // expected-error {{invalid tensor element type}}
-
-// -----
-
-// expected-error at +1 {{invalid dimension}}
-#large_dim = tensor<9223372036854775808xf32>
-
-// -----
-
-func.func @illegalmemrefelementtype(memref<?xtensor<i8>>) -> () // expected-error {{invalid memref element type}}
-
-// -----
-
-func.func @illegalunrankedmemrefelementtype(memref<*xtensor<i8>>) -> () // expected-error {{invalid memref element type}}
-
-// -----
-// Test no map in memref type.
-func.func @memrefs(memref<2x4xi8, >) // expected-error {{expected list element}}
-
-// -----
-// Test non-existent map in memref type.
-func.func @memrefs(memref<2x4xi8, #map7>) // expected-error {{undefined symbol alias id 'map7'}}
-
-// -----
-// Test unsupported memory space.
-func.func @memrefs(memref<2x4xi8, i8>) // expected-error {{unsupported memory space Attribute}}
-
-// -----
-// Test non-existent map in map composition of memref type.
-#map0 = affine_map<(d0, d1) -> (d0, d1)>
-
-func.func @memrefs(memref<2x4xi8, #map0, #map8>) // expected-error {{undefined symbol alias id 'map8'}}
-
-// -----
-// Test multiple memory space error.
-#map0 = affine_map<(d0, d1) -> (d0, d1)>
-func.func @memrefs(memref<2x4xi8, #map0, 1, 2>) // expected-error {{multiple memory spaces specified in memref type}}
-
-// -----
-// Test affine map after memory space.
-#map0 = affine_map<(d0, d1) -> (d0, d1)>
-#map1 = affine_map<(d0, d1) -> (d0, d1)>
-
-func.func @memrefs(memref<2x4xi8, #map0, 1, #map1>) // expected-error {{expected memory space to be last in memref type}}
-
-// -----
-// Test dimension mismatch between memref and layout map.
-// The error must be emitted even for the trivial identity layout maps that are
-// dropped in type creation.
-#map0 = affine_map<(d0, d1) -> (d0, d1)>
-func.func @memrefs(memref<42xi8, #map0>) // expected-error {{memref layout mismatch between rank and affine map: 1 != 2}}
-
-// -----
-
-func.func @memref_space_after_strides(memref<42x42xi8, 0, offset: ?, strides: [?, ?]>) // expected-error {{expected memory space to be last in memref type}}
-
-// -----
-
-func.func @memref_stride_missing_colon(memref<42x42xi8, offset ?, strides: [?, ?]>) // expected-error {{expected colon after `offset` keyword}}
-
-// -----
-
-func.func @memref_stride_invalid_offset(memref<42x42xi8, offset: [], strides: [?, ?]>) // expected-error {{invalid offset}}
-
-// -----
-
-func.func @memref_stride_missing_strides(memref<42x42xi8, offset: 0 [?, ?]>) // expected-error {{expected comma after offset value}}
-
-// -----
-
-func.func @memref_stride_missing_strides(memref<42x42xi8, offset: 0, [?, ?]>) // expected-error {{expected `strides` keyword after offset specification}}
-
-// -----
-
-func.func @memref_stride_missing_colon_2(memref<42x42xi8, offset: 0, strides [?, ?]>) // expected-error {{expected colon after `strides` keyword}}
-
-// -----
-
-// expected-error @+1 {{expected '['}}
-func.func @memref_stride_invalid_strides(memref<42x42xi8, offset: 0, strides: ()>)
-
-// -----
-
-func.func @memref_zero_stride(memref<42x42xi8, offset: ?, strides: [0, ?]>) // expected-error {{invalid memref stride}}
-
-// -----
-
-func.func @tensor_encoding_mismatch(%arg0: tensor<8xi32, "enc">) -> (tensor<8xi32>) { // expected-note {{prior use here}}
-  return %arg0: tensor<8xi32> // expected-error {{use of value '%arg0' expects 
diff erent type than prior uses: 'tensor<8xi32>' vs 'tensor<8xi32, "enc">'}}
-}
-
-// -----
-
 func.func @bad_branch() {
 ^bb12:
   cf.br ^missing  // expected-error {{reference to an undefined block}}
@@ -197,15 +94,6 @@ func.func @no_block_arg_enclosing_parens() {
 
 // -----
 
-"       // expected-error {{expected}}
-"
-
-// -----
-
-"       // expected-error {{expected}}
-
-// -----
-
 func.func @bad_op_type() {
 ^bb40:
   "foo"() : i32  // expected-error {{expected function type}}
@@ -222,55 +110,6 @@ func.func @no_terminator() {
 
 // -----
 
-func.func @illegaltype(i21312312323120) // expected-error {{invalid integer width}}
-
-// -----
-
-func.func @malformed_for_percent() {
-  affine.for i = 1 to 10 { // expected-error {{expected SSA operand}}
-
-// -----
-
-func.func @malformed_for_equal() {
-  affine.for %i 1 to 10 { // expected-error {{expected '='}}
-
-// -----
-
-func.func @malformed_for_to() {
-  affine.for %i = 1 too 10 { // expected-error {{expected 'to' between bounds}}
-  }
-}
-
-// -----
-
-func.func @incomplete_for() {
-  affine.for %i = 1 to 10 step 2
-}        // expected-error @-1 {{expected '{' to begin a region}}
-
-// -----
-
-#map0 = affine_map<(d0) -> (d0 floordiv 4)>
-
-func.func @reference_to_iv_in_bound() {
-  // expected-error at +2 {{region entry argument '%i0' is already in use}}
-  // expected-note at +1 {{previously referenced here}}
-  affine.for %i0 = #map0(%i0) to 10 {
-  }
-}
-
-// -----
-
-func.func @nonconstant_step(%1 : i32) {
-  affine.for %2 = 1 to 5 step %1 { // expected-error {{expected attribute value}}
-
-// -----
-
-func.func @for_negative_stride() {
-  affine.for %i = 1 to 10 step -1
-}        // expected-error at -1 {{expected step to be representable as a positive signed integer}}
-
-// -----
-
 func.func @non_operation() {
   test.asd   // expected-error {{custom op 'test.asd' is unknown}}
 }
@@ -284,42 +123,6 @@ func.func @non_operation() {
 
 // -----
 
-func.func @invalid_if_conditional2() {
-  affine.for %i = 1 to 10 {
-    affine.if affine_set<(i)[N] : (i >= )>  // expected-error {{expected affine expression}}
-  }
-}
-
-// -----
-
-func.func @invalid_if_conditional3() {
-  affine.for %i = 1 to 10 {
-    affine.if affine_set<(i)[N] : (i == )>  // expected-error {{expected affine expression}}
-  }
-}
-
-// -----
-
-func.func @invalid_if_conditional6() {
-  affine.for %i = 1 to 10 {
-    affine.if affine_set<(i) : (i)> // expected-error {{expected '== affine-expr' or '>= affine-expr' at end of affine constraint}}
-  }
-}
-
-// -----
-// TODO: support affine.if (1)?
-func.func @invalid_if_conditional7() {
-  affine.for %i = 1 to 10 {
-    affine.if affine_set<(i) : (1)> // expected-error {{expected '== affine-expr' or '>= affine-expr' at end of affine constraint}}
-  }
-}
-
-// -----
-
-#map = affine_map<(d0) -> (%  // expected-error {{invalid SSA name}}
-
-// -----
-
 func.func @test() {
 ^bb40:
   %1 = "foo"() : (i32)->i64 // expected-error {{expected 0 operand types but had 1}}
@@ -350,19 +153,6 @@ func.func @malformed_type(%a : intt) { // expected-error {{expected non-function
 
 // -----
 
-func.func @resulterror() -> i32 {
-^bb42:
-  return    // expected-error {{'func.return' op has 0 operands, but enclosing function (@resulterror) returns 1}}
-}
-
-// -----
-
-func.func @func_resulterror() -> i32 {
-  return // expected-error {{'func.return' op has 0 operands, but enclosing function (@func_resulterror) returns 1}}
-}
-
-// -----
-
 func.func @argError() {
 ^bb1(%a: i64):  // expected-note {{previously defined here}}
   cf.br ^bb2
@@ -395,12 +185,6 @@ func.func @succ_arg_type_mismatch() {
 }
 
 
-// -----
-
-// Test no nested vector.
-func.func @vectors(vector<1 x vector<1xi32>>, vector<2x4xf32>)
-// expected-error at -1 {{vector elements must be int/index/float type}}
-
 // -----
 
 func.func @condbr_notbool() {
@@ -524,23 +308,6 @@ func.func @dominance_failure() {  //  expected-note {{operand defined as a block
 
 // -----
 
-func.func @return_type_mismatch() -> i32 {
-  %0 = "foo"() : ()->f32
-  return %0 : f32  // expected-error {{type of return operand 0 ('f32') doesn't match function result type ('i32') in function @return_type_mismatch}}
-}
-
-// -----
-
-func.func @return_inside_loop() {
-  affine.for %i = 1 to 100 {
-    // expected-error at +1 {{'func.return' op expects parent op 'func.func'}}
-    func.return
-  }
-  return
-}
-
-// -----
-
 // expected-error at +1 {{expected three consecutive dots for an ellipsis}}
 func.func @malformed_ellipsis_one(.)
 
@@ -551,497 +318,140 @@ func.func @malformed_ellipsis_two(..)
 
 // -----
 
-// expected-error at +1 {{expected non-function type}}
-func.func @func_variadic(...)
-
-// -----
-
 func.func private @redef()  // expected-note {{see existing symbol definition here}}
 func.func private @redef()  // expected-error {{redefinition of symbol named 'redef'}}
 
 // -----
 
-func.func @foo() {
-^bb0:
-  %x = constant @foo : (i32) -> ()  // expected-error {{reference to function with mismatched type}}
-  return
+func.func @calls(%arg0: i32) {
+  // expected-error at +1 {{expected non-function type}}
+  %z = "casdasda"(%x) : (ppop32) -> i32
 }
 
 // -----
 
-func.func @undefined_function() {
-^bb0:
-  %x = constant @qux : (i32) -> ()  // expected-error {{reference to undefined function 'qux'}}
-  return
-}
+// expected-error at +1 {{expected SSA operand}}
+func.func @n(){^b(
 
 // -----
 
-#map1 = affine_map<(i)[j] -> (i+j)>
-
-func.func @bound_symbol_mismatch(%N : index) {
-  affine.for %i = #map1(%N) to 100 {
-  // expected-error at -1 {{symbol operand count and affine map symbol count must match}}
-  }
+// This used to crash the parser, but should just error out by interpreting
+// `tensor` as operator rather than as a type.
+func.func @f(f32) {
+^bb0(%a : f32):
+  %18 = arith.cmpi slt, %idx, %idx : index
+  tensor<42 x index  // expected-error {{custom op 'tensor' is unknown (tried 'func.tensor' as well)}}
   return
 }
 
 // -----
 
-#map1 = affine_map<(i)[j] -> (i+j)>
-
-func.func @bound_dim_mismatch(%N : index) {
-  affine.for %i = #map1(%N, %N)[%N] to 100 {
-  // expected-error at -1 {{dim operand count and affine map dim count must match}}
+func.func @f(%m : memref<?x?xf32>) {
+  affine.for %i0 = 0 to 42 {
+    // expected-note at +1 {{previously referenced here}}
+    %x = memref.load %m[%i0, %i1] : memref<?x?xf32>
+  }
+  // expected-error at +1 {{region entry argument '%i1' is already in use}}
+  affine.for %i1 = 0 to 42 {
   }
   return
 }
 
 // -----
 
-func.func @large_bound() {
-  affine.for %i = 1 to 9223372036854775810 {
-  // expected-error at -1 {{integer constant out of range for attribute}}
-  }
+func.func @dialect_type_empty_namespace(!<"">) -> () { // expected-error {{invalid type identifier}}
   return
 }
 
 // -----
 
-func.func @max_in_upper_bound(%N : index) {
-  affine.for %i = 1 to max affine_map<(i)->(N, 100)> { //expected-error {{expected attribute value}}
-  }
+func.func @dialect_type_missing_greater(!foo<) -> () { // expected-error {{unbalanced ')' character in pretty dialect name}}
   return
-}
 
 // -----
 
-func.func @step_typo() {
-  affine.for %i = 1 to 100 step -- 1 { //expected-error {{expected constant integer}}
-  }
+func.func @type_alias_unknown(!unknown_alias) -> () { // expected-error {{undefined symbol alias id 'unknown_alias'}}
   return
 }
 
 // -----
 
-func.func @invalid_bound_map(%N : i32) {
-  affine.for %i = 1 to affine_map<(i)->(j)>(%N) { //expected-error {{use of undeclared identifier}}
-  }
-  return
-}
+// expected-error @+1 {{type names with a '.' are reserved for dialect-defined names}}
+!foo.bar = i32
 
 // -----
 
-// expected-error @+1 {{expected '(' in integer set constraint list}}
-#set0 = affine_set<(i)[N, M] : )i >= 0)>
+!missing_eq_alias i32 // expected-error {{expected '=' in type alias definition}}
 
 // -----
-#set0 = affine_set<(i)[N] : (i >= 0, N - i >= 0)>
 
-func.func @invalid_if_operands1(%N : index) {
-  affine.for %i = 1 to 10 {
-    affine.if #set0(%i) {
-    // expected-error at -1 {{symbol operand count and integer set symbol count must match}}
+!missing_type_alias = // expected-error {{expected non-function type}}
 
 // -----
-#set0 = affine_set<(i)[N] : (i >= 0, N - i >= 0)>
 
-func.func @invalid_if_operands2(%N : index) {
-  affine.for %i = 1 to 10 {
-    affine.if #set0()[%N] {
-    // expected-error at -1 {{dim operand count and integer set dim count must match}}
+!redef_alias = i32
+!redef_alias = i32 // expected-error {{redefinition of type alias id 'redef_alias'}}
 
 // -----
-#set0 = affine_set<(i)[N] : (i >= 0, N - i >= 0)>
 
-func.func @invalid_if_operands3(%N : index) {
-  affine.for %i = 1 to 10 {
-    affine.if #set0(%i)[%i] {
-    // expected-error at -1 {{operand cannot be used as a symbol}}
-    }
-  }
+func.func @invalid_nested_dominance() {
+  "test.ssacfg_region"() ({
+    // expected-error @+1 {{operand #0 does not dominate this use}}
+    "foo.use" (%1) : (i32) -> ()
+    cf.br ^bb2
+
+  ^bb2:
+    // expected-note @+1 {{operand defined here}}
+    %1 = arith.constant 0 : i32
+    "foo.yield" () : () -> ()
+  }) : () -> ()
   return
 }
 
-// -----
-// expected-error at +1 {{expected '"' in string literal}}
-"J// -----
-func.func @calls(%arg0: i32) {
-  // expected-error at +1 {{expected non-function type}}
-  %z = "casdasda"(%x) : (ppop32) -> i32
-}
-// -----
-// expected-error at +1 {{expected SSA operand}}
-func.func @n(){^b(
 // -----
 
-func.func @elementsattr_non_tensor_type() -> () {
-^bb0:
-  "foo"(){bar = dense<[4]> : i32} : () -> () // expected-error {{elements literal must be a ranked tensor or vector type}}
-}
+// expected-error @+1 {{unbalanced ']' character in pretty dialect name}}
+func.func @invalid_unknown_type_dialect_name() -> !invalid.dialect<!x@#]!@#>
 
 // -----
 
-func.func @elementsattr_non_ranked() -> () {
-^bb0:
-  "foo"(){bar = dense<[4]> : tensor<?xi32>} : () -> () // expected-error {{elements literal type must have static shape}}
-}
+// expected-error @+1 {{expected '<' in tuple type}}
+func.func @invalid_tuple_missing_less(tuple i32>)
 
 // -----
 
-func.func @elementsattr_shape_mismatch() -> () {
-^bb0:
-  "foo"(){bar = dense<[4]> : tensor<5xi32>} : () -> () // expected-error {{inferred shape of elements literal ([1]) does not match type ([5])}}
-}
+// expected-error @+1 {{expected '>' in tuple type}}
+func.func @invalid_tuple_missing_greater(tuple<i32)
 
 // -----
 
-func.func @elementsattr_invalid() -> () {
-^bb0:
-  "foo"(){bar = dense<[4, [5]]> : tensor<2xi32>} : () -> () // expected-error {{tensor literal is invalid; ranks are not consistent between elements}}
+// Should not crash because of deletion order here.
+func.func @invalid_region_dominance() {
+  "foo.use" (%1) : (i32) -> ()
+  "foo.region"() ({
+    %1 = arith.constant 0 : i32  // This value is used outside of the region.
+    "foo.yield" () : () -> ()
+  }, {
+    // expected-error @+1 {{expected operation name in quotes}}
+    %2 = arith.constant 1 i32  // Syntax error causes region deletion.
+  }) : () -> ()
+  return
 }
 
 // -----
 
-func.func @elementsattr_badtoken() -> () {
-^bb0:
-  "foo"(){bar = dense<[tf_opaque]> : tensor<1xi32>} : () -> () // expected-error {{expected element literal of primitive type}}
-}
-
-// -----
+// Should not crash because of deletion order here.
+func.func @invalid_region_block() {
+  "foo.branch"()[^bb2] : () -> ()  // Attempt to jump into the region.
 
-func.func @elementsattr_floattype1() -> () {
-^bb0:
-  // expected-error at +1 {{expected integer elements, but parsed floating-point}}
-  "foo"(){bar = dense<[4.0]> : tensor<1xi32>} : () -> ()
-}
-
-// -----
-
-func.func @elementsattr_floattype1() -> () {
-^bb0:
-  // expected-error at +1 {{expected integer elements, but parsed floating-point}}
-  "foo"(){bar = dense<4.0> : tensor<i32>} : () -> ()
-}
-
-// -----
-
-func.func @elementsattr_floattype2() -> () {
-^bb0:
-  // expected-error at +1 {{expected floating-point elements, but parsed integer}}
-  "foo"(){bar = dense<[4]> : tensor<1xf32>} : () -> ()
-}
-
-// -----
-
-func.func @elementsattr_toolarge1() -> () {
-^bb0:
-  "foo"(){bar = dense<[777]> : tensor<1xi8>} : () -> () // expected-error {{integer constant out of range}}
-}
-
-// -----
-
-// expected-error at +1 {{parsed zero elements, but type ('tensor<i64>') expected at least 1}}
-#attr = dense<> : tensor<i64>
-
-// -----
-
-func.func @elementsattr_toolarge2() -> () {
-^bb0:
-  "foo"(){bar = dense<[-777]> : tensor<1xi8>} : () -> () // expected-error {{integer constant out of range}}
-}
-
-// -----
-
-"foo"(){bar = dense<[()]> : tensor<complex<i64>>} : () -> () // expected-error {{expected element literal of primitive type}}
-
-// -----
-
-"foo"(){bar = dense<[(10)]> : tensor<complex<i64>>} : () -> () // expected-error {{expected ',' between complex elements}}
-
-// -----
-
-"foo"(){bar = dense<[(10,)]> : tensor<complex<i64>>} : () -> () // expected-error {{expected element literal of primitive type}}
-
-// -----
-
-"foo"(){bar = dense<[(10,10]> : tensor<complex<i64>>} : () -> () // expected-error {{expected ')' after complex elements}}
-
-// -----
-
-func.func @elementsattr_malformed_opaque() -> () {
-^bb0:
-  "foo"(){bar = opaque<10, "0xQZz123"> : tensor<1xi8>} : () -> () // expected-error {{expected dialect namespace}}
-}
-
-// -----
-
-func.func @elementsattr_malformed_opaque1() -> () {
-^bb0:
-  "foo"(){bar = opaque<"_", "0xQZz123"> : tensor<1xi8>} : () -> () // expected-error {{expected string containing hex digits starting with `0x`}}
-}
-
-// -----
-
-func.func @elementsattr_malformed_opaque2() -> () {
-^bb0:
-  "foo"(){bar = opaque<"_", "00abc"> : tensor<1xi8>} : () -> () // expected-error {{expected string containing hex digits starting with `0x`}}
-}
-
-// -----
-
-func.func @redundant_signature(%a : i32) -> () {
-^bb0(%b : i32):  // expected-error {{invalid block name in region with named arguments}}
-  return
-}
-
-// -----
-
-func.func @mixed_named_arguments(%a : i32,
-                               f32) -> () {
-    // expected-error @-1 {{expected SSA identifier}}
-  return
-}
-
-// -----
-
-func.func @mixed_named_arguments(f32,
-                               %a : i32) -> () { // expected-error {{expected type instead of SSA identifier}}
-  return
-}
-
-// -----
-
-// This used to crash the parser, but should just error out by interpreting
-// `tensor` as operator rather than as a type.
-func.func @f(f32) {
-^bb0(%a : f32):
-  %18 = arith.cmpi slt, %idx, %idx : index
-  tensor<42 x index  // expected-error {{custom op 'tensor' is unknown (tried 'func.tensor' as well)}}
-  return
-}
-
-// -----
-
-func.func @f(%m : memref<?x?xf32>) {
-  affine.for %i0 = 0 to 42 {
-    // expected-note at +1 {{previously referenced here}}
-    %x = memref.load %m[%i0, %i1] : memref<?x?xf32>
-  }
-  // expected-error at +1 {{region entry argument '%i1' is already in use}}
-  affine.for %i1 = 0 to 42 {
-  }
-  return
-}
-
-// -----
-
-func.func @dialect_type_empty_namespace(!<"">) -> () { // expected-error {{invalid type identifier}}
-  return
-}
-
-// -----
-
-func.func @dialect_type_missing_greater(!foo<) -> () { // expected-error {{unbalanced ')' character in pretty dialect name}}
-  return
-
-// -----
-
-func.func @type_alias_unknown(!unknown_alias) -> () { // expected-error {{undefined symbol alias id 'unknown_alias'}}
-  return
-}
-
-// -----
-
-// expected-error @+1 {{type names with a '.' are reserved for dialect-defined names}}
-!foo.bar = i32
-
-// -----
-
-!missing_eq_alias i32 // expected-error {{expected '=' in type alias definition}}
-
-// -----
-
-!missing_type_alias = // expected-error {{expected non-function type}}
-
-// -----
-
-!redef_alias = i32
-!redef_alias = i32 // expected-error {{redefinition of type alias id 'redef_alias'}}
-
-// -----
-
-// Check ill-formed opaque tensor.
-func.func @complex_loops() {
-  affine.for %i1 = 1 to 100 {
-  // expected-error @+1 {{expected '"' in string literal}}
-  "opaqueIntTensor"(){bar = opaque<"_", "0x686]> : tensor<2x1x4xi32>} : () -> ()
-
-// -----
-
-func.func @mi() {
-  // expected-error @+1 {{expected element literal of primitive type}}
-  "fooi64"(){bar = sparse<vector<1xi64>,[,[,1]
-
-// -----
-
-func.func @invalid_tensor_literal() {
-  // expected-error @+1 {{expected 1-d tensor for sparse element values}}
-  "foof16"(){bar = sparse<[[0, 0, 0]],  [[-2.0]]> : vector<1x1x1xf16>} : () -> ()
-
-// -----
-
-func.func @invalid_tensor_literal() {
-  // expected-error @+1 {{expected element literal of primitive type}}
-  "fooi16"(){bar = sparse<[[1, 1, 0], [0, 1, 0], [0,, [[0, 0, 0]], [-2.0]> : tensor<2x2x2xi16>} : () -> ()
-
-// -----
-
-func.func @invalid_tensor_literal() {
-  // expected-error @+1 {{sparse index #0 is not contained within the value shape, with index=[1, 1], and type='tensor<1x1xi16>'}}
-  "fooi16"(){bar = sparse<1, 10> : tensor<1x1xi16>} : () -> ()
-
-// -----
-
-func.func @invalid_affine_structure() {
-  %c0 = arith.constant 0 : index
-  %idx = affine.apply affine_map<(d0, d1)> (%c0, %c0) // expected-error {{expected '->' or ':'}}
-  return
-}
-
-// -----
-
-func.func @missing_for_max(%arg0: index, %arg1: index, %arg2: memref<100xf32>) {
-  // expected-error @+1 {{lower loop bound affine map with multiple results requires 'max' prefix}}
-  affine.for %i0 = affine_map<()[s]->(0,s-1)>()[%arg0] to %arg1 {
-  }
-  return
-}
-
-// -----
-
-func.func @missing_for_min(%arg0: index, %arg1: index, %arg2: memref<100xf32>) {
-  // expected-error @+1 {{upper loop bound affine map with multiple results requires 'min' prefix}}
-  affine.for %i0 = %arg0 to affine_map<()[s]->(100,s+1)>()[%arg1] {
-  }
-  return
-}
-
-// -----
-
-// expected-error @+1 {{vector types must have positive constant sizes}}
-func.func @zero_vector_type() -> vector<0xi32>
-
-// -----
-
-// expected-error @+1 {{vector types must have positive constant sizes}}
-func.func @zero_in_vector_type() -> vector<1x0xi32>
-
-// -----
-
-// expected-error @+1 {{expected non-function type}}
-func.func @negative_vector_size() -> vector<-1xi32>
-
-// -----
-
-// expected-error @+1 {{expected non-function type}}
-func.func @negative_in_vector_size() -> vector<1x-1xi32>
-
-// -----
-
-// expected-error @+1 {{expected non-function type}}
-func.func @negative_memref_size() -> memref<-1xi32>
-
-// -----
-
-// expected-error @+1 {{expected non-function type}}
-func.func @negative_in_memref_size() -> memref<1x-1xi32>
-
-// -----
-
-// expected-error @+1 {{expected non-function type}}
-func.func @negative_tensor_size() -> tensor<-1xi32>
-
-// -----
-
-// expected-error @+1 {{expected non-function type}}
-func.func @negative_in_tensor_size() -> tensor<1x-1xi32>
-
-// -----
-
-func.func @invalid_nested_dominance() {
-  "test.ssacfg_region"() ({
-    // expected-error @+1 {{operand #0 does not dominate this use}}
-    "foo.use" (%1) : (i32) -> ()
-    cf.br ^bb2
-
-  ^bb2:
-    // expected-note @+1 {{operand defined here}}
-    %1 = arith.constant 0 : i32
-    "foo.yield" () : () -> ()
-  }) : () -> ()
-  return
-}
-
-// -----
-
-// expected-error @+1 {{unbalanced ']' character in pretty dialect name}}
-func.func @invalid_unknown_type_dialect_name() -> !invalid.dialect<!x@#]!@#>
-
-// -----
-
-// expected-error @+1 {{@ identifier expected to start with letter or '_'}}
-func.func @$invalid_function_name()
-
-// -----
-
-// expected-error @+1 {{arguments may only have dialect attributes}}
-func.func @invalid_func_arg_attr(i1 {non_dialect_attr = 10})
-
-// -----
-
-// expected-error @+1 {{results may only have dialect attributes}}
-func.func @invalid_func_result_attr() -> (i1 {non_dialect_attr = 10})
-
-// -----
-
-// expected-error @+1 {{expected '<' in tuple type}}
-func.func @invalid_tuple_missing_less(tuple i32>)
-
-// -----
-
-// expected-error @+1 {{expected '>' in tuple type}}
-func.func @invalid_tuple_missing_greater(tuple<i32)
-
-// -----
-
-// Should not crash because of deletion order here.
-func.func @invalid_region_dominance() {
-  "foo.use" (%1) : (i32) -> ()
-  "foo.region"() ({
-    %1 = arith.constant 0 : i32  // This value is used outside of the region.
-    "foo.yield" () : () -> ()
-  }, {
-    // expected-error @+1 {{expected operation name in quotes}}
-    %2 = arith.constant 1 i32  // Syntax error causes region deletion.
-  }) : () -> ()
-  return
-}
-
-// -----
-
-// Should not crash because of deletion order here.
-func.func @invalid_region_block() {
-  "foo.branch"()[^bb2] : () -> ()  // Attempt to jump into the region.
-
-^bb1:
-  "foo.region"() ({
-    ^bb2:
-      "foo.yield"() : () -> ()
-  }, {
-    // expected-error @+1 {{expected operation name in quotes}}
-    %2 = arith.constant 1 i32  // Syntax error causes region deletion.
-  }) : () -> ()
+^bb1:
+  "foo.region"() ({
+    ^bb2:
+      "foo.yield"() : () -> ()
+  }, {
+    // expected-error @+1 {{expected operation name in quotes}}
+    %2 = arith.constant 1 i32  // Syntax error causes region deletion.
+  }) : () -> ()
 }
 
 // -----
@@ -1137,21 +547,6 @@ func.func @ssa_name_missing_eq() {
 
 // -----
 
-// expected-error @+1 {{invalid element type for complex}}
-func.func @bad_complex(complex<memref<2x4xi8>>)
-
-// -----
-
-// expected-error @+1 {{expected '<' in complex type}}
-func.func @bad_complex(complex memref<2x4xi8>>)
-
-// -----
-
-// expected-error @+1 {{expected '>' in complex type}}
-func.func @bad_complex(complex<i32)
-
-// -----
-
 // expected-error @+1 {{attribute names with a '.' are reserved for dialect-defined names}}
 #foo.attr = i32
 
@@ -1183,390 +578,11 @@ func.func @invalid_region_dominance() {
 
 // -----
 
-func.func @hexadecimal_float_leading_minus() {
-  // expected-error @+1 {{hexadecimal float literal should not have a leading minus}}
-  "foo"() {value = -0x7fff : f16} : () -> ()
-}
-
-// -----
-
-func.func @hexadecimal_float_literal_overflow() {
-  // expected-error @+1 {{hexadecimal float constant out of range for type}}
-  "foo"() {value = 0xffffffff : f16} : () -> ()
-}
-
-// -----
-
-func.func @decimal_float_literal() {
-  // expected-error @+2 {{unexpected decimal integer literal for a floating point value}}
-  // expected-note @+1 {{add a trailing dot to make the literal a float}}
-  "foo"() {value = 42 : f32} : () -> ()
-}
-
-// -----
-
-func.func @float_in_int_tensor() {
-  // expected-error @+1 {{expected integer elements, but parsed floating-point}}
-  "foo"() {bar = dense<[42.0, 42]> : tensor<2xi32>} : () -> ()
-}
-
-// -----
-
-func.func @float_in_bool_tensor() {
-  // expected-error @+1 {{expected integer elements, but parsed floating-point}}
-  "foo"() {bar = dense<[true, 42.0]> : tensor<2xi1>} : () -> ()
-}
-
-// -----
-
-func.func @decimal_int_in_float_tensor() {
-  // expected-error @+1 {{expected floating-point elements, but parsed integer}}
-  "foo"() {bar = dense<[42, 42.0]> : tensor<2xf32>} : () -> ()
-}
-
-// -----
-
-func.func @bool_in_float_tensor() {
-  // expected-error @+1 {{expected floating-point elements, but parsed integer}}
-  "foo"() {bar = dense<[42.0, true]> : tensor<2xf32>} : () -> ()
-}
-
-// -----
-
-func.func @hexadecimal_float_leading_minus_in_tensor() {
-  // expected-error @+1 {{hexadecimal float literal should not have a leading minus}}
-  "foo"() {bar = dense<-0x7FFFFFFF> : tensor<2xf32>} : () -> ()
-}
-
-// -----
-
-// Check that we report an error when a value could be parsed, but does not fit
-// into the specified type.
-func.func @hexadecimal_float_too_wide_for_type_in_tensor() {
-  // expected-error @+1 {{hexadecimal float constant out of range for type}}
-  "foo"() {bar = dense<0x7FF0000000000000> : tensor<2xf32>} : () -> ()
-}
-
-// -----
-
-// Check that we report an error when a value is too wide to be parsed.
-func.func @hexadecimal_float_too_wide_in_tensor() {
-  // expected-error @+1 {{hexadecimal float constant out of range for type}}
-  "foo"() {bar = dense<0x7FFFFFF0000000000000> : tensor<2xf32>} : () -> ()
-}
-
-// -----
-
-func.func @integer_too_wide_in_tensor() {
-  // expected-error @+1 {{integer constant out of range for type}}
-  "foo"() {bar = dense<0xFFFFFFFFFFFFFF> : tensor<2xi16>} : () -> ()
-}
-
-// -----
-
-func.func @bool_literal_in_non_bool_tensor() {
-  // expected-error @+1 {{expected i1 type for 'true' or 'false' values}}
-  "foo"() {bar = dense<true> : tensor<2xi16>} : () -> ()
-}
-
-// -----
-
 // expected-error @+1 {{unbalanced ')' character in pretty dialect name}}
 func.func @bad_arrow(%arg : !unreg.ptr<(i32)->)
 
 // -----
 
-func.func @negative_value_in_unsigned_int_attr() {
-  // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
-  "foo"() {bar = -5 : ui32} : () -> ()
-}
-
-// -----
-
-func.func @negative_value_in_unsigned_vector_attr() {
-  // expected-error @+1 {{expected unsigned integer elements, but parsed negative value}}
-  "foo"() {bar = dense<[5, -5]> : vector<2xui32>} : () -> ()
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -129 : i8
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 256 : i8
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -129 : si8
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 129 : si8
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
-    attr = -1 : ui8
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 256 : ui8
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -32769 : i16
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 65536 : i16
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -32769 : si16
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 32768 : si16
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
-    attr = -1 : ui16
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 65536: ui16
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -2147483649 : i32
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 4294967296 : i32
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -2147483649 : si32
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 2147483648 : si32
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
-    attr = -1 : ui32
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 4294967296 : ui32
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -9223372036854775809 : i64
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 18446744073709551616 : i64
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = -9223372036854775809 : si64
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 9223372036854775808 : si64
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{negative integer literal not valid for unsigned integer type}}
-    attr = -1 : ui64
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 18446744073709551616 : ui64
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @really_large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 79228162514264337593543950336 : ui96
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @really_large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 79228162514264337593543950336 : i96
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @really_large_bound() {
-  "test.out_of_range_attribute"() {
-    // expected-error @+1 {{integer constant out of range for attribute}}
-    attr = 39614081257132168796771975168 : si96
-  } : () -> ()
-  return
-}
-
-// -----
-
-func.func @duplicate_dictionary_attr_key() {
-  // expected-error @+1 {{duplicate key 'a' in dictionary attribute}}
-  "foo.op"() {a, a} : () -> ()
-}
-
-// -----
-
 // expected-error @+1 {{attribute 'attr' occurs more than once in the attribute list}}
 test.format_symbol_name_attr_op @name { attr = "xx" }
 
@@ -1622,20 +638,11 @@ func.func @invalid_region_dominance_with_dominance_free_regions() {
 
 // -----
 
-func.func @foo() {} // expected-error {{expected non-empty function body}}
-
-// -----
-
 // expected-error at +1 {{expected valid attribute name}}
 "t"(){""}
 
 // -----
 
-// expected-error at +1 {{expected ',' or ']'}}
-"f"() { b = [@m:
-
-// -----
-
 // This makes sure we emit an error at the end of the correct line, the : is
 // expected at the end of foo, not on the return line.
 func.func @error_at_end_of_line() {
@@ -1669,12 +676,3 @@ func.func @error_at_end_of_line() {
 // -----
 
 @foo   // expected-error {{expected operation name in quotes}}
-
-// -----
-
-func.func @func() {
-  %c0 = arith.constant  // expected-error {{expected attribute value}}
-
-  %x = arith.constant 1 : i32
-}
-


        


More information about the Mlir-commits mailing list