You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: standalone-opt %s | standalone-opt | FileCheck %s
|
|
|
|
module {
|
|
// CHECK-LABEL: func @bar()
|
|
func @bar() {
|
|
%0 = constant 1 : i32
|
|
// CHECK: %{{.*}} = standalone.foo %{{.*}} : i32
|
|
%res = standalone.foo %0 : i32
|
|
return
|
|
}
|
|
}
|