aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/irgen.c
blob: 0debf05f59349b331e682004b4d7579bb8316fcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -emit-module -triple x86_64-apple-darwin10 -o %t/module.pcm -DBUILD_MODULE %s
// RUN: %clang_cc1 -fmodule-cache-path %t -triple x86_64-apple-darwin10 -fdisable-module-hash -emit-llvm -o - %s | FileCheck %s

#ifdef BUILD_MODULE
static inline int triple(int x) { return x * 3; }
#else
__import_module__ module;

// CHECK: define void @triple_value
void triple_value(int *px) {
  *px = triple(*px);
}

// CHECK: define internal i32 @triple(i32
#endif