diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-02-21 07:42:26 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-02-21 07:42:26 +0000 |
commit | 3cdf542f5acbfa161dd7449c4480907791c9846c (patch) | |
tree | edd5c5b84c7b17a07ea4eb4c16ddc4c5f653af25 /llvm/test/CodeGen/X86/x86-64-asm.ll | |
parent | e86c91f5b25427fc5d19cb6b6ec8df63835b467b (diff) | |
download | bcm5719-llvm-3cdf542f5acbfa161dd7449c4480907791c9846c.tar.gz bcm5719-llvm-3cdf542f5acbfa161dd7449c4480907791c9846c.zip |
Remove llvm-upgrade and update tests.
llvm-svn: 47432
Diffstat (limited to 'llvm/test/CodeGen/X86/x86-64-asm.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/x86-64-asm.ll | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/X86/x86-64-asm.ll b/llvm/test/CodeGen/X86/x86-64-asm.ll index 0814684bcd0..8ccf8b67448 100644 --- a/llvm/test/CodeGen/X86/x86-64-asm.ll +++ b/llvm/test/CodeGen/X86/x86-64-asm.ll @@ -1,15 +1,12 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc +; RUN: llvm-as < %s | llc ; PR1029 target datalayout = "e-p:64:64" -target endian = little -target pointersize = 64 target triple = "x86_64-unknown-linux-gnu" -implementation ; Functions: - -void %frame_dummy() { +define void @frame_dummy() { entry: - %tmp1 = tail call void (sbyte*)* (void (sbyte*)*)* asm "", "=r,0,~{dirflag},~{fpsr},~{flags}"( void (sbyte*)* null ) ; <void (sbyte*)*> [#uses=0] - ret void + %tmp1 = tail call void (i8*)* (void (i8*)*)* asm "", "=r,0,~{dirflag},~{fpsr},~{flags}"( void (i8*)* null ) ; <void (i8*)*> [#uses=0] + ret void } + |