Mercurial > hg > CbC > CbC_llvm
view test/Other/extract-weak-odr.ll @ 52:c22698ecb2a9
modified CreateIdentifierInfo and create new function which was named 'CreateUniqueIdentifierInfo'.
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 15 Jan 2014 21:01:33 +0900 |
parents | 95c75e76d11b |
children |
line wrap: on
line source
; RUN: llvm-extract -func foo -S < %s | FileCheck %s ; RUN: llvm-extract -delete -func foo -S < %s | FileCheck --check-prefix=DELETE %s ; Test that we don't convert weak_odr to external definitions. ; CHECK: @bar = external global i32 ; CHECK: define weak_odr i32* @foo() { ; CHECK-NEXT: ret i32* @bar ; CHECK-NEXT: } ; DELETE: @bar = weak_odr global i32 42 ; DELETE: declare i32* @foo() @bar = weak_odr global i32 42 define weak_odr i32* @foo() { ret i32* @bar } define void @g() { %c = call i32* @foo() ret void }