diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-21 19:14:49 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-21 19:14:49 +0000 |
commit | 787bfe654cd617425f07255188d98fe0c2db34c1 (patch) | |
tree | d99e5254ea4df39e06f1a48b611f656bf8b48c60 /test | |
parent | 246dd65a13111f0288d14ff6b765688e3e5edaa7 (diff) |
Integer constants now print out as signed values in the assembly,
regardless of the signedness of the associated type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/2006-07-28-AsmPrint-Long-As-Pointer.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/2006-07-28-AsmPrint-Long-As-Pointer.ll b/test/CodeGen/X86/2006-07-28-AsmPrint-Long-As-Pointer.ll index 805de7c62c..2ceda9ebbf 100644 --- a/test/CodeGen/X86/2006-07-28-AsmPrint-Long-As-Pointer.ll +++ b/test/CodeGen/X86/2006-07-28-AsmPrint-Long-As-Pointer.ll @@ -1,4 +1,4 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep 4294967240 +; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep -- -56 ; PR853 %X = global int* cast (ulong 18446744073709551560 to int*) |