summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/bitcast.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-02-21 07:42:26 +0000
committerTanya Lattner <tonic@nondot.org>2008-02-21 07:42:26 +0000
commit33eefffb2b25b5f4a313f08fa7c57ddfcbccf36e (patch)
treec8a69f1be3db80d136ec9dcc8e41d9d5affd35ad /test/CodeGen/X86/bitcast.ll
parent7c1687c196e8dc89a4722e0463965f0b0f5f399c (diff)
downloadexternal_llvm-33eefffb2b25b5f4a313f08fa7c57ddfcbccf36e.zip
external_llvm-33eefffb2b25b5f4a313f08fa7c57ddfcbccf36e.tar.gz
external_llvm-33eefffb2b25b5f4a313f08fa7c57ddfcbccf36e.tar.bz2
Remove llvm-upgrade and update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/bitcast.ll')
-rw-r--r--test/CodeGen/X86/bitcast.ll29
1 files changed, 15 insertions, 14 deletions
diff --git a/test/CodeGen/X86/bitcast.ll b/test/CodeGen/X86/bitcast.ll
index d8bc069..f575409 100644
--- a/test/CodeGen/X86/bitcast.ll
+++ b/test/CodeGen/X86/bitcast.ll
@@ -1,23 +1,24 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86-64
+; RUN: llvm-as < %s | llc -march=x86
+; RUN: llvm-as < %s | llc -march=x86-64
; PR1033
-long %test1(double %t) {
- %u = bitcast double %t to long
- ret long %u
+define i64 @test1(double %t) {
+ %u = bitcast double %t to i64 ; <i64> [#uses=1]
+ ret i64 %u
}
-double %test2(long %t) {
- %u = bitcast long %t to double
- ret double %u
+define double @test2(i64 %t) {
+ %u = bitcast i64 %t to double ; <double> [#uses=1]
+ ret double %u
}
-int %test3(float %t) {
- %u = bitcast float %t to int
- ret int %u
+define i32 @test3(float %t) {
+ %u = bitcast float %t to i32 ; <i32> [#uses=1]
+ ret i32 %u
}
-float %test4(int %t) {
- %u = bitcast int %t to float
- ret float %u
+define float @test4(i32 %t) {
+ %u = bitcast i32 %t to float ; <float> [#uses=1]
+ ret float %u
}
+