[clang][NFC] simplify the unset check in `ParseLabeledStatement` (#117430)
[llvm-project.git] / clang / test / CodeGen / PowerPC / ppc64-extend.c
blob5d69cc958a42a39fee0e4f9cb63b422a05a12c9f
1 // REQUIRES: powerpc-registered-target
2 // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s
4 void f1(int x) { return; }
5 // CHECK: define{{.*}} void @f1(i32 noundef signext %x) [[NUW:#[0-9]+]]
7 void f2(unsigned int x) { return; }
8 // CHECK: define{{.*}} void @f2(i32 noundef zeroext %x) [[NUW]]
10 int f3(void) { return 0; }
11 // CHECK: define{{.*}} signext i32 @f3() [[NUW]]
13 unsigned int f4(void) { return 0; }
14 // CHECK: define{{.*}} zeroext i32 @f4() [[NUW]]
16 // CHECK: attributes [[NUW]] = { noinline nounwind{{.*}} }