[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / CodeGenObjCXX / foreach-statement.mm
blobd0ad5b3a8f0fcf791bf9b9d8906a706e65d39062
1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
2 // rdar: // 8027844
4 // CHECK: call void @llvm.memset
6 int main() {
7     id foo;
8     for (id a in foo) {
9     }