diff options
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll | 9 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll b/llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll new file mode 100644 index 00000000000..b763daf480f --- /dev/null +++ b/llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -march=sparc --relocation-model=pic | grep _GLOBAL_OFFSET_TABLE_ + +@foo = global i32 0 ; <i32*> [#uses=1] + +define i32 @func() nounwind readonly { +entry: + %0 = load i32* @foo, align 4 ; <i32> [#uses=1] + ret i32 %0 +} diff --git a/llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll b/llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll new file mode 100644 index 00000000000..7fe81cc9b54 --- /dev/null +++ b/llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s | llc -march=sparc | grep weak + +define weak i32 @func() nounwind { +entry: + ret i32 0 +} |

