Index: llvm/trunk/test/Bitcode/thinlto-function-summary-callgraph-pgo.ll
===================================================================
--- llvm/trunk/test/Bitcode/thinlto-function-summary-callgraph-pgo.ll
+++ llvm/trunk/test/Bitcode/thinlto-function-summary-callgraph-pgo.ll
@@ -1,46 +0,0 @@
-; Test to check the callgraph in summary when there is PGO
-; RUN: opt -module-summary %s -o %t.o
-; RUN: llvm-bcanalyzer -dump %t.o | FileCheck %s
-; RUN: opt -module-summary %p/Inputs/thinlto-function-summary-callgraph.ll -o %t2.o
-; RUN: llvm-lto -thinlto -o %t3 %t.o %t2.o
-; RUN: llvm-bcanalyzer -dump %t3.thinlto.bc | FileCheck %s --check-prefix=COMBINED
-
-; CHECK:
-; CHECK-NEXT:
-; CHECK-NEXT:
-
-; COMBINED:
-; COMBINED-NEXT:
-; COMBINED-NEXT:
-; COMBINED-NEXT:
-
-; ModuleID = 'thinlto-function-summary-callgraph.ll'
-target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
-target triple = "x86_64-unknown-linux-gnu"
-
-; Function Attrs: nounwind uwtable
-define i32 @main() #0 !prof !2 {
-entry:
- call void (...) @func()
- ret i32 0
-}
-
-declare void @func(...) #1
-
-!2 = !{!"function_entry_count", i64 1}