Luboš Luňák | b5b2cf7 | 2020-01-14 23:46:35 +0100 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple=x86_64-linux-gnu -fmodules -fmodules-codegen -emit-module -fmodule-name=foo %S/Inputs/codegen-extern-template.modulemap -x c++ -o %t.pcm |
Fangrui Song | dbc96b5 | 2020-02-03 10:09:39 -0800 | [diff] [blame] | 2 | // RUN: %clang_cc1 -triple x86_64-linux-gnu -fmodules -fmodule-file=%t.pcm %s -emit-llvm -o - | FileCheck %s |
Luboš Luňák | 729530f | 2019-11-03 20:47:40 +0100 | [diff] [blame] | 3 | // expected-no-diagnostics |
| 4 | |
| 5 | #include "codegen-extern-template.h" |
| 6 | |
| 7 | template int foo<int>(); |
| 8 | |
| 9 | // CHECK: define weak_odr i32 @_Z3fooIiET_v |