[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / mlir / test / Bytecode / bytecode_callback.mlir
blob3b537bb974da9ca454c2d489db3ac7141c5fc513
1 // RUN: mlir-opt %s --test-bytecode-roundtrip="test-dialect-version=1.2" -verify-diagnostics | FileCheck %s --check-prefix=VERSION_1_2
2 // RUN: mlir-opt %s --test-bytecode-roundtrip="test-dialect-version=2.0" -verify-diagnostics | FileCheck %s --check-prefix=VERSION_2_0
4 func.func @base_test(%arg0 : i32) -> f32 {
5   %0 = "test.addi"(%arg0, %arg0) : (i32, i32) -> i32
6   %1 = "test.cast"(%0) : (i32) -> f32
7   return %1 : f32
10 // VERSION_1_2: Overriding IntegerType encoding...
11 // VERSION_1_2: Overriding parsing of IntegerType encoding...
13 // VERSION_2_0-NOT: Overriding IntegerType encoding...
14 // VERSION_2_0-NOT: Overriding parsing of IntegerType encoding...