diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-07-19 23:13:04 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-07-19 23:13:04 +0000 |
commit | 9445e9aaa0240a897baf464ff89255acdcc7fbc9 (patch) | |
tree | 1d769c299d5d5b0027b30ac5c301c6ff7613d28f /test/Transforms/GVNPRE | |
parent | 087b72d1bceea0ffe414c0e3d54196aafc7769f8 (diff) | |
download | external_llvm-9445e9aaa0240a897baf464ff89255acdcc7fbc9.zip external_llvm-9445e9aaa0240a897baf464ff89255acdcc7fbc9.tar.gz external_llvm-9445e9aaa0240a897baf464ff89255acdcc7fbc9.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')
-rw-r--r-- | test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll | 4 |
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*, ...) |