blob: 8c782fdb2dbc67a1422c65df5d8952727486d80a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: cir-opt %s -split-input-file --verify-roundtrip | FileCheck %s
// Should parse and print C source language attribute.
module attributes {cir.lang = #cir.lang<c>} { }
// CHECK: module attributes {cir.lang = #cir.lang<c>}
// -----
// Should parse and print C++ source language attribute.
module attributes {cir.lang = #cir.lang<cxx>} { }
// CHECK: module attributes {cir.lang = #cir.lang<cxx>}
|