Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjCXX / instantiate-return.mm
blobfe59602b395db240e5d4ea7368d959a6c6af0bf1
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -std=c++11 -o - %s | FileCheck %s
3 template <class T>
4 struct TemplateClass {
5   int a = 0;
6 };
8 struct S0;
10 @interface C1
11 - (TemplateClass<S0>)m1;
12 @end
14 // This code used to assert in CodeGen because the return type TemplateClass<S0>
15 // wasn't instantiated.
17 // CHECK: define internal i32 @"\01-[C1 m1]"(
19 @implementation C1
20 - (TemplateClass<S0>)m1 {
22 @end