[cfe-commits] r154571 - /cfe/trunk/test/CodeGenCXX/debug-info-static-fns.cpp

Eric Christopher echristo at apple.com
Wed Apr 11 17:36:10 PDT 2012


Author: echristo
Date: Wed Apr 11 19:36:10 2012
New Revision: 154571

URL: http://llvm.org/viewvc/llvm-project?rev=154571&view=rev
Log:
Testcase for previous commit.

rdar://11079003

Added:
    cfe/trunk/test/CodeGenCXX/debug-info-static-fns.cpp

Added: cfe/trunk/test/CodeGenCXX/debug-info-static-fns.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-static-fns.cpp?rev=154571&view=auto
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-static-fns.cpp (added)
+++ cfe/trunk/test/CodeGenCXX/debug-info-static-fns.cpp Wed Apr 11 19:36:10 2012
@@ -0,0 +1,10 @@
+// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s
+
+namespace A {
+  static int a(int b) { return b + 4; }
+
+  int b(int c) { return c + a(c); }
+}
+
+// Verify that a is present and mangled.
+// CHECK: metadata !{i32 786478, i32 0, metadata !6, metadata !"a", metadata !"a", metadata !"_ZN1AL1aEi", metadata !7, i32 4, metadata !8, i1 true, i1 true, i32 0, i32 0, null, i32 256, i1 false, i32 (i32)* @_ZN1AL1aEi, null, null, metadata !14, i32 4} ; [ DW_TAG_subprogram ]





More information about the cfe-commits mailing list