[libclc] 22/291: Do not use linkonce_odr linkage in .ll files. This prevented them from being linked into the library under lazy linkage.

Andreas Beckmann anbe at moszumanska.debian.org
Tue Sep 8 10:53:28 UTC 2015


This is an automated email from the git hooks/post-receive script.

anbe pushed a commit to branch master
in repository libclc.

commit 833b5f1a04b3137b403a01835d1685576a24bac5
Author: Peter Collingbourne <peter at pcc.me.uk>
Date:   Sun Aug 5 22:25:48 2012 +0000

    Do not use linkonce_odr linkage in .ll files.  This prevented them
    from being linked into the library under lazy linkage.
    
    git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@161314 91177308-0d34-0410-b5e6-96231b3b80d8
---
 generic/lib/integer/add_sat.ll      | 16 ++++++++--------
 generic/lib/integer/add_sat_impl.ll | 16 ++++++++--------
 generic/lib/integer/sub_sat.ll      | 16 ++++++++--------
 generic/lib/integer/sub_sat_impl.ll | 16 ++++++++--------
 ptx/lib/integer/add_sat.ll          | 16 ++++++++--------
 ptx/lib/integer/sub_sat.ll          | 16 ++++++++--------
 6 files changed, 48 insertions(+), 48 deletions(-)

diff --git a/generic/lib/integer/add_sat.ll b/generic/lib/integer/add_sat.ll
index d6814c3..bcbe4c0 100644
--- a/generic/lib/integer/add_sat.ll
+++ b/generic/lib/integer/add_sat.ll
@@ -1,55 +1,55 @@
 declare i8 @__clc_add_sat_impl_s8(i8 %x, i8 %y)
 
-define linkonce_odr i8 @__clc_add_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_add_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_add_sat_impl_s8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i8 @__clc_add_sat_impl_u8(i8 %x, i8 %y)
 
-define linkonce_odr i8 @__clc_add_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_add_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_add_sat_impl_u8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i16 @__clc_add_sat_impl_s16(i16 %x, i16 %y)
 
-define linkonce_odr i16 @__clc_add_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_add_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_add_sat_impl_s16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i16 @__clc_add_sat_impl_u16(i16 %x, i16 %y)
 
-define linkonce_odr i16 @__clc_add_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_add_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_add_sat_impl_u16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i32 @__clc_add_sat_impl_s32(i32 %x, i32 %y)
 
-define linkonce_odr i32 @__clc_add_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_add_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_add_sat_impl_s32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i32 @__clc_add_sat_impl_u32(i32 %x, i32 %y)
 
-define linkonce_odr i32 @__clc_add_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_add_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_add_sat_impl_u32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i64 @__clc_add_sat_impl_s64(i64 %x, i64 %y)
 
-define linkonce_odr i64 @__clc_add_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_add_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_add_sat_impl_s64(i64 %x, i64 %y)
   ret i64 %call
 }
 
 declare i64 @__clc_add_sat_impl_u64(i64 %x, i64 %y)
 
-define linkonce_odr i64 @__clc_add_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_add_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_add_sat_impl_u64(i64 %x, i64 %y)
   ret i64 %call
 }
diff --git a/generic/lib/integer/add_sat_impl.ll b/generic/lib/integer/add_sat_impl.ll
index 92f4c53..c150ecb 100644
--- a/generic/lib/integer/add_sat_impl.ll
+++ b/generic/lib/integer/add_sat_impl.ll
@@ -1,7 +1,7 @@
 declare {i8, i1} @llvm.sadd.with.overflow.i8(i8, i8)
 declare {i8, i1} @llvm.uadd.with.overflow.i8(i8, i8)
 
-define linkonce_odr i8 @__clc_add_sat_impl_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_add_sat_impl_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call {i8, i1} @llvm.sadd.with.overflow.i8(i8 %x, i8 %y)
   %res = extractvalue {i8, i1} %call, 0
   %over = extractvalue {i8, i1} %call, 1
@@ -11,7 +11,7 @@ define linkonce_odr i8 @__clc_add_sat_impl_s8(i8 %x, i8 %y) nounwind readnone al
   ret i8 %sat
 }
 
-define linkonce_odr i8 @__clc_add_sat_impl_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_add_sat_impl_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call {i8, i1} @llvm.uadd.with.overflow.i8(i8 %x, i8 %y)
   %res = extractvalue {i8, i1} %call, 0
   %over = extractvalue {i8, i1} %call, 1
@@ -22,7 +22,7 @@ define linkonce_odr i8 @__clc_add_sat_impl_u8(i8 %x, i8 %y) nounwind readnone al
 declare {i16, i1} @llvm.sadd.with.overflow.i16(i16, i16)
 declare {i16, i1} @llvm.uadd.with.overflow.i16(i16, i16)
 
-define linkonce_odr i16 @__clc_add_sat_impl_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_add_sat_impl_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call {i16, i1} @llvm.sadd.with.overflow.i16(i16 %x, i16 %y)
   %res = extractvalue {i16, i1} %call, 0
   %over = extractvalue {i16, i1} %call, 1
@@ -32,7 +32,7 @@ define linkonce_odr i16 @__clc_add_sat_impl_s16(i16 %x, i16 %y) nounwind readnon
   ret i16 %sat
 }
 
-define linkonce_odr i16 @__clc_add_sat_impl_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_add_sat_impl_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call {i16, i1} @llvm.uadd.with.overflow.i16(i16 %x, i16 %y)
   %res = extractvalue {i16, i1} %call, 0
   %over = extractvalue {i16, i1} %call, 1
@@ -43,7 +43,7 @@ define linkonce_odr i16 @__clc_add_sat_impl_u16(i16 %x, i16 %y) nounwind readnon
 declare {i32, i1} @llvm.sadd.with.overflow.i32(i32, i32)
 declare {i32, i1} @llvm.uadd.with.overflow.i32(i32, i32)
 
-define linkonce_odr i32 @__clc_add_sat_impl_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_add_sat_impl_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 %x, i32 %y)
   %res = extractvalue {i32, i1} %call, 0
   %over = extractvalue {i32, i1} %call, 1
@@ -53,7 +53,7 @@ define linkonce_odr i32 @__clc_add_sat_impl_s32(i32 %x, i32 %y) nounwind readnon
   ret i32 %sat
 }
 
-define linkonce_odr i32 @__clc_add_sat_impl_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_add_sat_impl_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call {i32, i1} @llvm.uadd.with.overflow.i32(i32 %x, i32 %y)
   %res = extractvalue {i32, i1} %call, 0
   %over = extractvalue {i32, i1} %call, 1
@@ -64,7 +64,7 @@ define linkonce_odr i32 @__clc_add_sat_impl_u32(i32 %x, i32 %y) nounwind readnon
 declare {i64, i1} @llvm.sadd.with.overflow.i64(i64, i64)
 declare {i64, i1} @llvm.uadd.with.overflow.i64(i64, i64)
 
-define linkonce_odr i64 @__clc_add_sat_impl_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_add_sat_impl_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call {i64, i1} @llvm.sadd.with.overflow.i64(i64 %x, i64 %y)
   %res = extractvalue {i64, i1} %call, 0
   %over = extractvalue {i64, i1} %call, 1
@@ -74,7 +74,7 @@ define linkonce_odr i64 @__clc_add_sat_impl_s64(i64 %x, i64 %y) nounwind readnon
   ret i64 %sat
 }
 
-define linkonce_odr i64 @__clc_add_sat_impl_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_add_sat_impl_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call {i64, i1} @llvm.uadd.with.overflow.i64(i64 %x, i64 %y)
   %res = extractvalue {i64, i1} %call, 0
   %over = extractvalue {i64, i1} %call, 1
diff --git a/generic/lib/integer/sub_sat.ll b/generic/lib/integer/sub_sat.ll
index f223a0e..7252574 100644
--- a/generic/lib/integer/sub_sat.ll
+++ b/generic/lib/integer/sub_sat.ll
@@ -1,55 +1,55 @@
 declare i8 @__clc_sub_sat_impl_s8(i8 %x, i8 %y)
 
-define linkonce_odr i8 @__clc_sub_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_sub_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_sub_sat_impl_s8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i8 @__clc_sub_sat_impl_u8(i8 %x, i8 %y)
 
-define linkonce_odr i8 @__clc_sub_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_sub_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_sub_sat_impl_u8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i16 @__clc_sub_sat_impl_s16(i16 %x, i16 %y)
 
-define linkonce_odr i16 @__clc_sub_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_sub_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_sub_sat_impl_s16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i16 @__clc_sub_sat_impl_u16(i16 %x, i16 %y)
 
-define linkonce_odr i16 @__clc_sub_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_sub_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_sub_sat_impl_u16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i32 @__clc_sub_sat_impl_s32(i32 %x, i32 %y)
 
-define linkonce_odr i32 @__clc_sub_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_sub_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_sub_sat_impl_s32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i32 @__clc_sub_sat_impl_u32(i32 %x, i32 %y)
 
-define linkonce_odr i32 @__clc_sub_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_sub_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_sub_sat_impl_u32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i64 @__clc_sub_sat_impl_s64(i64 %x, i64 %y)
 
-define linkonce_odr i64 @__clc_sub_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_sub_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_sub_sat_impl_s64(i64 %x, i64 %y)
   ret i64 %call
 }
 
 declare i64 @__clc_sub_sat_impl_u64(i64 %x, i64 %y)
 
-define linkonce_odr i64 @__clc_sub_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_sub_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_sub_sat_impl_u64(i64 %x, i64 %y)
   ret i64 %call
 }
diff --git a/generic/lib/integer/sub_sat_impl.ll b/generic/lib/integer/sub_sat_impl.ll
index 99abbc3..e82b632 100644
--- a/generic/lib/integer/sub_sat_impl.ll
+++ b/generic/lib/integer/sub_sat_impl.ll
@@ -1,7 +1,7 @@
 declare {i8, i1} @llvm.ssub.with.overflow.i8(i8, i8)
 declare {i8, i1} @llvm.usub.with.overflow.i8(i8, i8)
 
-define linkonce_odr i8 @__clc_sub_sat_impl_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_sub_sat_impl_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call {i8, i1} @llvm.ssub.with.overflow.i8(i8 %x, i8 %y)
   %res = extractvalue {i8, i1} %call, 0
   %over = extractvalue {i8, i1} %call, 1
@@ -11,7 +11,7 @@ define linkonce_odr i8 @__clc_sub_sat_impl_s8(i8 %x, i8 %y) nounwind readnone al
   ret i8 %sat
 }
 
-define linkonce_odr i8 @__clc_sub_sat_impl_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define i8 @__clc_sub_sat_impl_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call {i8, i1} @llvm.usub.with.overflow.i8(i8 %x, i8 %y)
   %res = extractvalue {i8, i1} %call, 0
   %over = extractvalue {i8, i1} %call, 1
@@ -22,7 +22,7 @@ define linkonce_odr i8 @__clc_sub_sat_impl_u8(i8 %x, i8 %y) nounwind readnone al
 declare {i16, i1} @llvm.ssub.with.overflow.i16(i16, i16)
 declare {i16, i1} @llvm.usub.with.overflow.i16(i16, i16)
 
-define linkonce_odr i16 @__clc_sub_sat_impl_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_sub_sat_impl_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call {i16, i1} @llvm.ssub.with.overflow.i16(i16 %x, i16 %y)
   %res = extractvalue {i16, i1} %call, 0
   %over = extractvalue {i16, i1} %call, 1
@@ -32,7 +32,7 @@ define linkonce_odr i16 @__clc_sub_sat_impl_s16(i16 %x, i16 %y) nounwind readnon
   ret i16 %sat
 }
 
-define linkonce_odr i16 @__clc_sub_sat_impl_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define i16 @__clc_sub_sat_impl_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call {i16, i1} @llvm.usub.with.overflow.i16(i16 %x, i16 %y)
   %res = extractvalue {i16, i1} %call, 0
   %over = extractvalue {i16, i1} %call, 1
@@ -43,7 +43,7 @@ define linkonce_odr i16 @__clc_sub_sat_impl_u16(i16 %x, i16 %y) nounwind readnon
 declare {i32, i1} @llvm.ssub.with.overflow.i32(i32, i32)
 declare {i32, i1} @llvm.usub.with.overflow.i32(i32, i32)
 
-define linkonce_odr i32 @__clc_sub_sat_impl_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_sub_sat_impl_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call {i32, i1} @llvm.ssub.with.overflow.i32(i32 %x, i32 %y)
   %res = extractvalue {i32, i1} %call, 0
   %over = extractvalue {i32, i1} %call, 1
@@ -53,7 +53,7 @@ define linkonce_odr i32 @__clc_sub_sat_impl_s32(i32 %x, i32 %y) nounwind readnon
   ret i32 %sat
 }
 
-define linkonce_odr i32 @__clc_sub_sat_impl_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define i32 @__clc_sub_sat_impl_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call {i32, i1} @llvm.usub.with.overflow.i32(i32 %x, i32 %y)
   %res = extractvalue {i32, i1} %call, 0
   %over = extractvalue {i32, i1} %call, 1
@@ -64,7 +64,7 @@ define linkonce_odr i32 @__clc_sub_sat_impl_u32(i32 %x, i32 %y) nounwind readnon
 declare {i64, i1} @llvm.ssub.with.overflow.i64(i64, i64)
 declare {i64, i1} @llvm.usub.with.overflow.i64(i64, i64)
 
-define linkonce_odr i64 @__clc_sub_sat_impl_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_sub_sat_impl_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call {i64, i1} @llvm.ssub.with.overflow.i64(i64 %x, i64 %y)
   %res = extractvalue {i64, i1} %call, 0
   %over = extractvalue {i64, i1} %call, 1
@@ -74,7 +74,7 @@ define linkonce_odr i64 @__clc_sub_sat_impl_s64(i64 %x, i64 %y) nounwind readnon
   ret i64 %sat
 }
 
-define linkonce_odr i64 @__clc_sub_sat_impl_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define i64 @__clc_sub_sat_impl_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call {i64, i1} @llvm.usub.with.overflow.i64(i64 %x, i64 %y)
   %res = extractvalue {i64, i1} %call, 0
   %over = extractvalue {i64, i1} %call, 1
diff --git a/ptx/lib/integer/add_sat.ll b/ptx/lib/integer/add_sat.ll
index 9b8311c..f887962 100644
--- a/ptx/lib/integer/add_sat.ll
+++ b/ptx/lib/integer/add_sat.ll
@@ -1,55 +1,55 @@
 declare i8 @__clc_add_sat_impl_s8(i8 %x, i8 %y)
 
-define linkonce_odr ptx_device i8 @__clc_add_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define ptx_device i8 @__clc_add_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_add_sat_impl_s8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i8 @__clc_add_sat_impl_u8(i8 %x, i8 %y)
 
-define linkonce_odr ptx_device i8 @__clc_add_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define ptx_device i8 @__clc_add_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_add_sat_impl_u8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i16 @__clc_add_sat_impl_s16(i16 %x, i16 %y)
 
-define linkonce_odr ptx_device i16 @__clc_add_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define ptx_device i16 @__clc_add_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_add_sat_impl_s16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i16 @__clc_add_sat_impl_u16(i16 %x, i16 %y)
 
-define linkonce_odr ptx_device i16 @__clc_add_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define ptx_device i16 @__clc_add_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_add_sat_impl_u16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i32 @__clc_add_sat_impl_s32(i32 %x, i32 %y)
 
-define linkonce_odr ptx_device i32 @__clc_add_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define ptx_device i32 @__clc_add_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_add_sat_impl_s32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i32 @__clc_add_sat_impl_u32(i32 %x, i32 %y)
 
-define linkonce_odr ptx_device i32 @__clc_add_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define ptx_device i32 @__clc_add_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_add_sat_impl_u32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i64 @__clc_add_sat_impl_s64(i64 %x, i64 %y)
 
-define linkonce_odr ptx_device i64 @__clc_add_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define ptx_device i64 @__clc_add_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_add_sat_impl_s64(i64 %x, i64 %y)
   ret i64 %call
 }
 
 declare i64 @__clc_add_sat_impl_u64(i64 %x, i64 %y)
 
-define linkonce_odr ptx_device i64 @__clc_add_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define ptx_device i64 @__clc_add_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_add_sat_impl_u64(i64 %x, i64 %y)
   ret i64 %call
 }
diff --git a/ptx/lib/integer/sub_sat.ll b/ptx/lib/integer/sub_sat.ll
index 6a51a52..1a66eb5 100644
--- a/ptx/lib/integer/sub_sat.ll
+++ b/ptx/lib/integer/sub_sat.ll
@@ -1,55 +1,55 @@
 declare i8 @__clc_sub_sat_impl_s8(i8 %x, i8 %y)
 
-define linkonce_odr ptx_device i8 @__clc_sub_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define ptx_device i8 @__clc_sub_sat_s8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_sub_sat_impl_s8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i8 @__clc_sub_sat_impl_u8(i8 %x, i8 %y)
 
-define linkonce_odr ptx_device i8 @__clc_sub_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
+define ptx_device i8 @__clc_sub_sat_u8(i8 %x, i8 %y) nounwind readnone alwaysinline {
   %call = call i8 @__clc_sub_sat_impl_u8(i8 %x, i8 %y)
   ret i8 %call
 }
 
 declare i16 @__clc_sub_sat_impl_s16(i16 %x, i16 %y)
 
-define linkonce_odr ptx_device i16 @__clc_sub_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define ptx_device i16 @__clc_sub_sat_s16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_sub_sat_impl_s16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i16 @__clc_sub_sat_impl_u16(i16 %x, i16 %y)
 
-define linkonce_odr ptx_device i16 @__clc_sub_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
+define ptx_device i16 @__clc_sub_sat_u16(i16 %x, i16 %y) nounwind readnone alwaysinline {
   %call = call i16 @__clc_sub_sat_impl_u16(i16 %x, i16 %y)
   ret i16 %call
 }
 
 declare i32 @__clc_sub_sat_impl_s32(i32 %x, i32 %y)
 
-define linkonce_odr ptx_device i32 @__clc_sub_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define ptx_device i32 @__clc_sub_sat_s32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_sub_sat_impl_s32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i32 @__clc_sub_sat_impl_u32(i32 %x, i32 %y)
 
-define linkonce_odr ptx_device i32 @__clc_sub_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
+define ptx_device i32 @__clc_sub_sat_u32(i32 %x, i32 %y) nounwind readnone alwaysinline {
   %call = call i32 @__clc_sub_sat_impl_u32(i32 %x, i32 %y)
   ret i32 %call
 }
 
 declare i64 @__clc_sub_sat_impl_s64(i64 %x, i64 %y)
 
-define linkonce_odr ptx_device i64 @__clc_sub_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define ptx_device i64 @__clc_sub_sat_s64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_sub_sat_impl_s64(i64 %x, i64 %y)
   ret i64 %call
 }
 
 declare i64 @__clc_sub_sat_impl_u64(i64 %x, i64 %y)
 
-define linkonce_odr ptx_device i64 @__clc_sub_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
+define ptx_device i64 @__clc_sub_sat_u64(i64 %x, i64 %y) nounwind readnone alwaysinline {
   %call = call i64 @__clc_sub_sat_impl_u64(i64 %x, i64 %y)
   ret i64 %call
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opencl/libclc.git



More information about the Pkg-opencl-commits mailing list