Files
clang-p2996/clang/test/CodeGen/ppc64-extend.c
hyeongyu kim fd9b099906 Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default"
This reverts commit aacfbb953e.

Revert "Fix lit test failures in CodeGenCoroutines"

This reverts commit 63fff0f5bf.
2021-11-09 02:15:55 +09:00

17 lines
536 B
C

// REQUIRES: powerpc-registered-target
// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s
void f1(int x) { return; }
// CHECK: define{{.*}} void @f1(i32 signext %x) [[NUW:#[0-9]+]]
void f2(unsigned int x) { return; }
// CHECK: define{{.*}} void @f2(i32 zeroext %x) [[NUW]]
int f3(void) { return 0; }
// CHECK: define{{.*}} signext i32 @f3() [[NUW]]
unsigned int f4(void) { return 0; }
// CHECK: define{{.*}} zeroext i32 @f4() [[NUW]]
// CHECK: attributes [[NUW]] = { noinline nounwind{{.*}} }