2011-11-16 08:21:54 +08:00
|
|
|
// RUN: rm -rf %t
|
2012-01-04 03:32:59 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -x objective-c -fmodule-cache-path %t -emit-module -fmodule-name=irgen -triple x86_64-apple-darwin10 %S/Inputs/module.map
|
|
|
|
// RUN: %clang_cc1 -fmodules -x objective-c -fmodule-cache-path %t -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// FIXME: When we have a syntax for modules in C, use that.
|
2011-09-16 02:47:32 +08:00
|
|
|
|
2012-12-12 06:11:52 +08:00
|
|
|
@import irgen;
|
2011-09-16 02:47:32 +08:00
|
|
|
|
|
|
|
// CHECK: define void @triple_value
|
|
|
|
void triple_value(int *px) {
|
|
|
|
*px = triple(*px);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: define internal i32 @triple(i32
|