summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/mingw-alloca.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-08 23:05:44 +0000
committerChris Lattner <sabre@nondot.org>2009-09-08 23:05:44 +0000
commitd842962e27b10b6831c2421fa257e3fd58a85b18 (patch)
treef21109ac541738051fdd3e258c078bafa09d40c6 /test/CodeGen/X86/mingw-alloca.ll
parent9c7a988e3b014ed56e6765f9ceb68d80d56414c0 (diff)
downloadllvm-d842962e27b10b6831c2421fa257e3fd58a85b18.tar.gz
llvm-d842962e27b10b6831c2421fa257e3fd58a85b18.tar.bz2
llvm-d842962e27b10b6831c2421fa257e3fd58a85b18.tar.xz
change selectiondag to add the sign extended versions of immediate operands
to instructions instead of zero extended ones. This makes the asmprinter print signed values more consistently. This apparently only really affects the X86 backend. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/mingw-alloca.ll')
-rw-r--r--test/CodeGen/X86/mingw-alloca.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/mingw-alloca.ll b/test/CodeGen/X86/mingw-alloca.ll
index 53d2350396..60673c16e8 100644
--- a/test/CodeGen/X86/mingw-alloca.ll
+++ b/test/CodeGen/X86/mingw-alloca.ll
@@ -1,6 +1,6 @@
; RUN: llvm-as < %s | llc -o %t
; RUN: grep __alloca %t | count 2
-; RUN: grep 4294967288 %t
+; RUN: grep -- -16 %t
; RUN: grep {pushl %eax} %t
; RUN: grep 8028 %t | count 2