]> granicus.if.org Git - clang/commitdiff
Remove test. Replacing it with a backend test with the optimized IR.
authorEric Christopher <echristo@gmail.com>
Wed, 21 May 2014 00:00:01 +0000 (00:00 +0000)
committerEric Christopher <echristo@gmail.com>
Wed, 21 May 2014 00:00:01 +0000 (00:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209260 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/debug-dead-local-var.c [deleted file]

diff --git a/test/CodeGen/debug-dead-local-var.c b/test/CodeGen/debug-dead-local-var.c
deleted file mode 100644 (file)
index 31c8d37..0000000
+++ /dev/null
@@ -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;
-}