|
| 1 | +// RUN: %clang_cc1 -std=c++17 -triple x86_64-unknown-linux-gnu -fclangir -emit-cir %s -o %t.cir |
| 2 | +// RUN: FileCheck --check-prefix=CIR --input-file=%t.cir %s |
| 3 | +// RUN: %clang_cc1 -std=c++17 -triple x86_64-unknown-linux-gnu -fclangir -emit-llvm %s -o %t-cir.ll |
| 4 | +// RUN: FileCheck --check-prefix=LLVM --input-file=%t-cir.ll %s |
| 5 | +// RUN: %clang_cc1 -std=c++17 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o %t.ll |
| 6 | +// RUN: FileCheck --check-prefix=OGCG --input-file=%t.ll %s |
| 7 | + |
| 8 | +// Test with built-in char16_t type |
| 9 | +const char16_t *test_utf16() { |
| 10 | + return u"你好世界"; |
| 11 | +} |
| 12 | + |
| 13 | +// CIR: cir.global "private" constant cir_private dso_local @{{.+}} = #cir.const_array<[#cir.int<20320> : !u16i, #cir.int<22909> : !u16i, #cir.int<19990> : !u16i, #cir.int<30028> : !u16i, #cir.int<0> : !u16i]> : !cir.array<!u16i x 5> |
| 14 | +// LLVM: @{{.+}} = private constant [5 x i16] [i16 20320, i16 22909, i16 19990, i16 30028, i16 0] |
| 15 | +// OGCG: @{{.+}} = private unnamed_addr constant [5 x i16] [i16 20320, i16 22909, i16 19990, i16 30028, i16 0] |
| 16 | + |
| 17 | +const char32_t *test_utf32() { |
| 18 | + return U"你好世界"; |
| 19 | +} |
| 20 | + |
| 21 | +// CIR: cir.global "private" constant cir_private dso_local @{{.+}} = #cir.const_array<[#cir.int<20320> : !u32i, #cir.int<22909> : !u32i, #cir.int<19990> : !u32i, #cir.int<30028> : !u32i, #cir.int<0> : !u32i]> : !cir.array<!u32i x 5> |
| 22 | +// LLVM: @{{.+}} = private constant [5 x i32] [i32 20320, i32 22909, i32 19990, i32 30028, i32 0] |
| 23 | +// OGCG: @{{.+}} = private unnamed_addr constant [5 x i32] [i32 20320, i32 22909, i32 19990, i32 30028, i32 0] |
| 24 | + |
| 25 | +const char16_t *test_zero16() { |
| 26 | + return u"\0\0\0\0"; |
| 27 | +} |
| 28 | + |
| 29 | +// CIR: cir.global "private" constant cir_private dso_local @{{.+}} = #cir.zero : !cir.array<!u16i x 5> |
| 30 | +// LLVM: @{{.+}} = private constant [5 x i16] zeroinitializer |
| 31 | +// OGCG: @{{.+}} = private unnamed_addr constant [5 x i16] zeroinitializer |
| 32 | + |
| 33 | +const char32_t *test_zero32() { |
| 34 | + return U"\0\0\0\0"; |
| 35 | +} |
| 36 | + |
| 37 | +// CIR: cir.global "private" constant cir_private dso_local @{{.+}} = #cir.zero : !cir.array<!u32i x 5> |
| 38 | +// LLVM: @{{.+}} = private constant [5 x i32] zeroinitializer |
| 39 | +// OGCG: @{{.+}} = private unnamed_addr constant [5 x i32] zeroinitializer |
| 40 | + |
| 41 | +const wchar_t *test_wchar() { |
| 42 | + return L"1234"; |
| 43 | +} |
| 44 | + |
| 45 | +// CIR: cir.global "private" constant cir_private dso_local @{{.+}} = #cir.const_array<[#cir.int<49> : !s32i, #cir.int<50> : !s32i, #cir.int<51> : !s32i, #cir.int<52> : !s32i, #cir.int<0> : !s32i]> : !cir.array<!s32i x 5> |
| 46 | +// LLVM: @{{.+}} = private constant [5 x i32] [i32 49, i32 50, i32 51, i32 52, i32 0] |
| 47 | +// OGCG: @{{.+}} = private unnamed_addr constant [5 x i32] [i32 49, i32 50, i32 51, i32 52, i32 0] |
| 48 | + |
| 49 | +const wchar_t *test_wchar_zero() { |
| 50 | + return L""; |
| 51 | +} |
| 52 | + |
| 53 | +// CIR: cir.global "private" constant cir_private dso_local @{{.+}} = #cir.zero : !cir.array<!s32i x 1> |
| 54 | +// LLVM: @{{.+}} = private constant [1 x i32] zeroinitializer |
| 55 | +// OGCG: @{{.+}} = private unnamed_addr constant [1 x i32] zeroinitializer |
| 56 | + |
| 57 | +const char16_t *test_char16_typedef() { |
| 58 | + return u"test"; |
| 59 | +} |
| 60 | + |
| 61 | +// CIR: cir.global "private" constant cir_private dso_local @{{.+}} = #cir.const_array<[#cir.int<116> : !u16i, #cir.int<101> : !u16i, #cir.int<115> : !u16i, #cir.int<116> : !u16i, #cir.int<0> : !u16i]> : !cir.array<!u16i x 5> |
| 62 | +// LLVM: @{{.+}} = private constant [5 x i16] [i16 116, i16 101, i16 115, i16 116, i16 0] |
| 63 | +// OGCG: @{{.+}} = private unnamed_addr constant [5 x i16] [i16 116, i16 101, i16 115, i16 116, i16 0] |
0 commit comments