aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll
diff options
context:
space:
mode:
authorReid Spencer <reid@x10sys.com>2007-07-19 23:13:04 +0000
committerReid Spencer <reid@x10sys.com>2007-07-19 23:13:04 +0000
commitf234bed0dd88ef57e1e1884a3f807bba4fb68376 (patch)
tree1d769c299d5d5b0027b30ac5c301c6ff7613d28f /test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll
parentddd33276097047345100dae74d033b5829782961 (diff)
downloadexternal_llvm-f234bed0dd88ef57e1e1884a3f807bba4fb68376.zip
external_llvm-f234bed0dd88ef57e1e1884a3f807bba4fb68376.tar.gz
external_llvm-f234bed0dd88ef57e1e1884a3f807bba4fb68376.tar.bz2
For PR1553:
Change the keywords for the zext and sext parameter attributes to be zeroext and signext so they don't conflict with the keywords for the instructions of the same name. This gets around the ambiguity. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll')
-rw-r--r--test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll b/test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll
index 1d8f3b5..86187b2 100644
--- a/test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll
+++ b/test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll
@@ -11,7 +11,7 @@ cond_true: ; preds = %entry
ret i32 0
cond_next: ; preds = %entry
- %tmp10 = invoke i16 @_ZN12token_stream4openEPKc( i8* null, i8* null ) sext
+ %tmp10 = invoke i16 @_ZN12token_stream4openEPKc( i8* null, i8* null ) signext
to label %invcont unwind label %cleanup690 ; <i16> [#uses=0]
invcont: ; preds = %cond_next
@@ -63,7 +63,7 @@ cleanup690: ; preds = %cond_next
ret i32 0
}
-declare i16 @_ZN12token_stream4openEPKc(i8*, i8*) sext
+declare i16 @_ZN12token_stream4openEPKc(i8*, i8*) signext
declare i32 @printf(i8*, ...)