2011-11-16 08:21:54 +08:00
|
|
|
// RUN: rm -rf %t
|
2011-11-30 06:42:06 +08:00
|
|
|
// RUN: %clang_cc1 -fmodule-cache-path %t -emit-module -fmodule-name=irgen -triple x86_64-apple-darwin10 %S/Inputs/module.map
|
2011-11-16 08:21:54 +08:00
|
|
|
// RUN: %clang_cc1 -fmodule-cache-path %t -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
|
2011-09-16 02:47:32 +08:00
|
|
|
|
2011-11-16 08:21:54 +08:00
|
|
|
__import_module__ 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
|