diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-02-19 01:41:04 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-02-19 01:41:04 +0000 |
commit | 3f04773f7884c1c7b8b89dddfb177b1f41f54c56 (patch) | |
tree | 8c66730e481d8ce70c0a8e082bfdbadc0badcc4b /llvm/test/CodeGen/Alpha/weak.ll | |
parent | 22011e90c992533411d2efc17f5efd365a636117 (diff) | |
download | bcm5719-llvm-3f04773f7884c1c7b8b89dddfb177b1f41f54c56.tar.gz bcm5719-llvm-3f04773f7884c1c7b8b89dddfb177b1f41f54c56.zip |
Remove llvm-upgrade and update tests.
llvm-svn: 47296
Diffstat (limited to 'llvm/test/CodeGen/Alpha/weak.ll')
-rw-r--r-- | llvm/test/CodeGen/Alpha/weak.ll | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/Alpha/weak.ll b/llvm/test/CodeGen/Alpha/weak.ll index aefaefd110a..e00e6d7bfe2 100644 --- a/llvm/test/CodeGen/Alpha/weak.ll +++ b/llvm/test/CodeGen/Alpha/weak.ll @@ -1,17 +1,16 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep .weak.*f -; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep .weak.*h +; RUN: llvm-as < %s | llc -march=alpha | grep .weak.*f +; RUN: llvm-as < %s | llc -march=alpha | grep .weak.*h -implementation ; Functions: - -weak uint %f() { +define weak i32 @f() { entry: - unreachable + unreachable } -void %g() { +define void @g() { entry: - tail call void %h( ) + tail call void @h( ) ret void } -declare extern_weak void %h() +declare extern_weak void @h() + |