Make helper functions static.
[oota-llvm.git] / test / LTO / linkonce_odr_func.ll
index ef5eaac2eac95126122d155c97cfa4d18aec6ba1..a67ffc0dd48ee9d8188f97450d5d03146943aa4e 100644 (file)
@@ -1,46 +1,48 @@
 ; RUN: llvm-as < %s >%t1
 ; RUN: llvm-lto -o %t2 -dso-symbol=foo1 -dso-symbol=foo2 -dso-symbol=foo3 \
-; RUN:     -dso-symbol=foo4  %t1 -disable-opt
+; RUN:     -dso-symbol=foo4 -dso-symbol=v1 -dso-symbol=v2 %t1 -disable-opt
 ; RUN: llvm-nm %t2 | FileCheck %s
 
-; FIXME: it looks like -march option of llvm-lto is not working and llvm-nm is
-; not printing the correct values with Mach-O.
-; XFAIL: darwin
-
-; FIXME: llvm-nm is printing 'd' instead of 't' for foo1.
-; XFAIL: powerpc64
+target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
+target triple = "x86_64-unknown-linux-gnu"
 
 ; CHECK: t foo1
-define linkonce_odr void @"\01foo1"() noinline {
+define linkonce_odr void @foo1() noinline {
   ret void
 }
 
-; CHECK: {{W|T}} foo2
-define linkonce_odr void @"\01foo2"() noinline {
+; CHECK: W foo2
+define linkonce_odr void @foo2() noinline {
   ret void
 }
 
 ; CHECK: t foo3
-define linkonce_odr void @"\01foo3"() noinline {
+define linkonce_odr void @foo3() noinline {
   ret void
 }
 
-; CHECK: {{W|T}} foo4
-define linkonce_odr void @"\01foo4"() noinline {
+; CHECK: W foo4
+define linkonce_odr void @foo4() noinline {
   ret void
 }
 
+; CHECK: r v1
+@v1 = linkonce_odr constant i32 32
+
+; CHECK: V v2
+@v2 = linkonce_odr global i32 32
+
 declare void @f(void()*)
 
 declare void @p()
 
 define void @bar() {
 bb0:
-  call void @"\01foo1"()
-  call void @f(void()* @"\01foo2")
-  invoke void @"\01foo3"() to label %bb1 unwind label %clean
+  call void @foo1()
+  call void @f(void()* @foo2)
+  invoke void @foo3() to label %bb1 unwind label %clean
 bb1:
-  invoke void @f(void()* @"\01foo4") to label %bb2 unwind label %clean
+  invoke void @f(void()* @foo4) to label %bb2 unwind label %clean
 bb2:
   ret void
 clean: