From e5df8ea4a6ca275fc13267ef88a2dbf1b8eed7d1 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Thu, 18 Aug 2005 20:06:09 +0000 Subject: [PATCH] Unmangled names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22875 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/constants.ll | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/CodeGen/PowerPC/constants.ll b/test/CodeGen/PowerPC/constants.ll index d0eec36ce57..d1f59e780b1 100644 --- a/test/CodeGen/PowerPC/constants.ll +++ b/test/CodeGen/PowerPC/constants.ll @@ -5,47 +5,47 @@ implementation ; Functions: -int %_Z2f1v() { +int %f1() { entry: ret int 1 } -int %_Z2f2v() { +int %f2() { entry: ret int -1 } -int %_Z2f3v() { +int %f3() { entry: ret int 0 } -int %_Z2f4v() { +int %f4() { entry: ret int 32767 } -int %_Z2f5v() { +int %f5() { entry: ret int 65535 } -int %_Z2f6v() { +int %f6() { entry: ret int 65536 } -int %_Z2f7v() { +int %f7() { entry: ret int 131071 } -int %_Z2f8v() { +int %f8() { entry: ret int 2147483647 } -int %_Z2f9v() { +int %f9() { entry: ret int -2147483648 }