forked from OSchip/llvm-project
17 lines
491 B
C
17 lines
491 B
C
// REQUIRES: ppc64-registered-target
|
|
// RUN: %clang_cc1 -O0 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s
|
|
|
|
void f1(int x) { return; }
|
|
// CHECK: define void @f1(i32 signext %x) #0
|
|
|
|
void f2(unsigned int x) { return; }
|
|
// CHECK: define void @f2(i32 zeroext %x) #0
|
|
|
|
int f3(void) { return 0; }
|
|
// CHECK: define signext i32 @f3() #0
|
|
|
|
unsigned int f4(void) { return 0; }
|
|
// CHECK: define zeroext i32 @f4() #0
|
|
|
|
// CHECK: attributes #0 = { nounwind "target-features"={{.*}} }
|