Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / PowerPC / aix-return.c
blob20c03cd94dcf1f57b9870707d7c23bf8837052e7
1 // REQUIRES: powerpc-registered-target
2 // RUN: %clang_cc1 -triple powerpc-unknown-aix \
3 // RUN: -emit-llvm -o - %s | FileCheck %s --check-prefixes=AIX,AIX32
4 // RUN: %clang_cc1 -triple powerpc64-unknown-aix \
5 // RUN: -emit-llvm -o - %s | FileCheck %s --check-prefixes=AIX,AIX64
7 // AIX-LABEL: define void @retVoid()
8 void retVoid(void) {}
10 // AIX-LABEL: define signext i8 @retChar(i8 noundef signext %x)
11 char retChar(char x) { return x; }
13 // AIX-LABEL: define signext i16 @retShort(i16 noundef signext %x)
14 short retShort(short x) { return x; }
16 // AIX32-LABEL: define i32 @retInt(i32 noundef %x)
17 // AIX64-LABEL: define signext i32 @retInt(i32 noundef signext %x)
18 int retInt(int x) { return 1; }
20 // AIX-LABEL: define i64 @retLongLong(i64 noundef %x)
21 long long retLongLong(long long x) { return x; }
23 // AIX-LABEL: define signext i8 @retEnumChar(i8 noundef signext %x)
24 enum EnumChar : char { IsChar };
25 enum EnumChar retEnumChar(enum EnumChar x) {
26 return x;
29 // AIX32-LABEL: define i32 @retEnumInt(i32 noundef %x)
30 // AIX64-LABEL: define signext i32 @retEnumInt(i32 noundef signext %x)
31 enum EnumInt : int { IsInt };
32 enum EnumInt retEnumInt(enum EnumInt x) {
33 return x;