brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.7 KiB · c0bc442 Raw
60 lines · c
1// RUN: %clang_cc1 -std=c23 -triple x86_64-unknown-linux-gnu -fclangir -emit-cir %s -o %t.cir2// RUN: FileCheck --input-file=%t.cir %s -check-prefix=CIR3// RUN: %clang_cc1 -std=c23 -triple x86_64-unknown-linux-gnu -Wno-unused-value -fclangir -emit-llvm %s -o %t-cir.ll4// RUN: FileCheck --input-file=%t-cir.ll %s -check-prefix=LLVM5// RUN: %clang_cc1 -std=c23 -triple x86_64-unknown-linux-gnu -Wno-unused-value -emit-llvm %s -o %t.ll6// RUN: FileCheck --input-file=%t.ll %s -check-prefix=OGCG7 8void comma(void) {9    bool b;10    char c;11    float f;12    int i;13 14    b = true, c = 65, f = 3.14f, i = 42;15 16    i = 100, 200;17}18 19// CIR-LABEL: cir.func{{.*}} @comma()20// CIR:         %[[B:.*]] = cir.alloca !cir.bool, !cir.ptr<!cir.bool>, ["b"]21// CIR:         %[[C:.*]] = cir.alloca !s8i, !cir.ptr<!s8i>, ["c"]22// CIR:         %[[F:.*]] = cir.alloca !cir.float, !cir.ptr<!cir.float>, ["f"]23// CIR:         %[[I:.*]] = cir.alloca !s32i, !cir.ptr<!s32i>, ["i"]24// CIR:         %[[TRUE:.*]] = cir.const #true25// CIR:         cir.store{{.*}} %[[TRUE]], %[[B]] : !cir.bool, !cir.ptr<!cir.bool>26// CIR:         %[[CHAR_INI_INIT:.*]] = cir.const #cir.int<65> : !s32i27// CIR:         %[[CHAR_VAL:.*]] = cir.cast integral %[[CHAR_INI_INIT]] : !s32i -> !s8i28// CIR:         cir.store{{.*}} %[[CHAR_VAL]], %[[C]] : !s8i, !cir.ptr<!s8i>29// CIR:         %[[FLOAT_VAL:.*]] = cir.const #cir.fp<3.140000e+00> : !cir.float30// CIR:         cir.store{{.*}} %[[FLOAT_VAL]], %[[F]] : !cir.float, !cir.ptr<!cir.float>31// CIR:         %[[INT_VAL:.*]] = cir.const #cir.int<42> : !s32i32// CIR:         cir.store{{.*}} %[[INT_VAL]], %[[I]] : !s32i, !cir.ptr<!s32i>33// CIR:         %[[HUNDRED:.*]] = cir.const #cir.int<100> : !s32i34// CIR:         cir.store{{.*}} %[[HUNDRED]], %[[I]] : !s32i, !cir.ptr<!s32i>35// CIR:         cir.return36 37// LLVM-LABEL: define {{.*}}void @comma(){{.*}} {38// LLVM:         %[[B_PTR:.*]] = alloca i839// LLVM:         %[[C_PTR:.*]] = alloca i840// LLVM:         %[[F_PTR:.*]] = alloca float41// LLVM:         %[[I_PTR:.*]] = alloca i3242// LLVM:         store i8 1, ptr %[[B_PTR]]43// LLVM:         store i8 65, ptr %[[C_PTR]]44// LLVM:         store float 0x40091EB860000000, ptr %[[F_PTR]]45// LLVM:         store i32 42, ptr %[[I_PTR]]46// LLVM:         store i32 100, ptr %[[I_PTR]]47// LLVM:         ret void48 49// OGCG-LABEL: define {{.*}}void @comma()50// OGCG:         %[[B_PTR:.*]] = alloca i851// OGCG:         %[[C_PTR:.*]] = alloca i852// OGCG:         %[[F_PTR:.*]] = alloca float53// OGCG:         %[[I_PTR:.*]] = alloca i3254// OGCG:         store i8 1, ptr %[[B_PTR]]55// OGCG:         store i8 65, ptr %[[C_PTR]]56// OGCG:         store float 0x40091EB860000000, ptr %[[F_PTR]]57// OGCG:         store i32 42, ptr %[[I_PTR]]58// OGCG:         store i32 100, ptr %[[I_PTR]]59// OGCG:         ret void60