The -exprs pass is no longer with LLVM. *sniff*

llvm-svn: 13825
This commit is contained in:
Chris Lattner 2004-05-27 07:36:08 +00:00
parent 0ceb07b09e
commit 97462838b2
2 changed files with 0 additions and 29 deletions

View File

@ -1,13 +0,0 @@
; RUN: analyze -exprs %s
implementation
void "foo"(int %reg126)
begin
%cast1007 = cast int %reg126 to uint ; <uint> [#uses=1]
%reg119 = sub uint %cast1007, %cast1007 ; <uint> [#uses=1]
%cast121 = cast uint %reg119 to sbyte * ; <sbyte *> [#uses=1]
ret void
end

View File

@ -1,16 +0,0 @@
; Expression analysis had a problem where the following assertion would get
; emitted:
; Constants.cpp:114: failed assertion `isValueValidForType(Ty, V) &&
; "Value too large for type!"'
;
; Testcase distilled from the bzip2 SPECint benchmark.
;
; RUN: analyze -exprs %s
implementation
void "sortIt"(ubyte %X)
begin
%reg115 = shl ubyte %X, ubyte 8
ret void
end