brintos

brintos / llvm-project-archived public Read only

0
0
Text · 403 B · 8c782fd Raw
12 lines · plain
1// RUN: cir-opt %s -split-input-file --verify-roundtrip | FileCheck %s2 3// Should parse and print C source language attribute.4module attributes {cir.lang = #cir.lang<c>} { }5// CHECK: module attributes {cir.lang = #cir.lang<c>}6 7// -----8 9// Should parse and print C++ source language attribute.10module attributes {cir.lang = #cir.lang<cxx>} { }11// CHECK: module attributes {cir.lang = #cir.lang<cxx>}12