minix/external/bsd/llvm/dist/clang/test/CodeGen/ppc64-extend.c
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

16 lines
501 B
C

// REQUIRES: ppc64-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]] = { nounwind{{.*}} }