Remove test. Replacing it with a backend test with the optimized IR.

llvm-svn: 209260
This commit is contained in:
Eric Christopher 2014-05-21 00:00:01 +00:00
parent 12a7155f60
commit 6c553d6240
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
// FIXME: Check IR rather than asm, then triple is not needed.
// RUN: %clang_cc1 -triple %itanium_abi_triple -O2 -g -emit-llvm %s -o - | FileCheck %s
// Radar 8122864
// Code is not generated for function foo, but preserve type information of
// local variable xyz.
static void foo() {
// CHECK: DW_TAG_structure_type
struct X { int a; int b; } xyz;
}
int bar() {
foo();
return 1;
}