Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/alloca.cir
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!u64i = !cir.int<u, 64>
!u8i = !cir.int<u, 8>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/array-ctor.cir
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!u8i = !cir.int<u, 8>
!rec_S = !cir.record<struct "S" padded {!u8i}>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/array-dtor.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!u8i = !cir.int<u, 8>
!rec_S = !cir.record<struct "S" padded {!u8i}>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/array.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/atomic.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>
!u32i = !cir.int<u, 32>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/binassign.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | cir-opt | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>
!s8i = !cir.int<s, 8>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/bitfield_info.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>
!u32i = !cir.int<u, 32>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/call.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/cast.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | cir-opt | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s
!s32i = !cir.int<s, 32>

module {
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/cmp.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | cir-opt | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s
!s32i = !cir.int<s, 32>
!u32i = !cir.int<u, 32>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/complex.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/copy.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>
module {
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/func.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>
!s64i = !cir.int<s, 64>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/global-init.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt --verify-roundtrip %s -o - | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!u8i = !cir.int<u, 8>

Expand Down
3 changes: 1 addition & 2 deletions clang/test/CIR/IR/global-var-linkage.cir
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// RUN: cir-opt %s -o %t.cir
// RUN: FileCheck --input-file=%t.cir %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/global.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s -o - | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s8i = !cir.int<s, 8>
!s16i = !cir.int<s, 16>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/label.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>

Expand Down
3 changes: 1 addition & 2 deletions clang/test/CIR/IR/module.cir
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// RUN: cir-opt %s -split-input-file -o %t.cir
// RUN: FileCheck --input-file=%t.cir %s
// 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>} { }
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/stack-save-restore.cir
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Test the CIR operations can parse and print correctly (roundtrip)

// RUN: cir-opt %s | cir-opt | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!u8i = !cir.int<u, 8>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/struct.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!u8i = !cir.int<u, 8>
!u16i = !cir.int<u, 16>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/switch-flat.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s
!s32i = !cir.int<s, 32>

cir.func @FlatSwitchWithoutDefault(%arg0: !s32i) {
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/switch.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s
!s32i = !cir.int<s, 32>

cir.func @s0() {
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/ternary.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | cir-opt | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s
!u32i = !cir.int<u, 32>

module {
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/throw.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/unary.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>
!s64i = !cir.int<s, 64>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/vector.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!s32i = !cir.int<s, 32>

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/vtable-addrpt.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

// Test the parsing and printing of a constructor that uses a vtable addess_point op.

Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/vtable-attr.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

!rec_Q = !cir.record<struct "Q" {!cir.vptr}>
!rec_S = !cir.record<struct "S" {!cir.vptr}>
Expand Down
2 changes: 1 addition & 1 deletion clang/test/CIR/IR/vtt-addrpoint.cir
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: cir-opt %s | FileCheck %s
// RUN: cir-opt %s --verify-roundtrip | FileCheck %s

// Test the parsing and printing of the two forms of vtt.address_point op, as
// they will appear in constructors.
Expand Down