diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/regression/2007-08-01-bool-zext-in-call.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/2007-08-01-bool-zext-in-call.ll b/test/regression/2007-08-01-bool-zext-in-call.ll index 3f3e26ab..d10a41ef 100644 --- a/test/regression/2007-08-01-bool-zext-in-call.ll +++ b/test/regression/2007-08-01-bool-zext-in-call.ll @@ -9,7 +9,7 @@ define i32 @foo(i8 signext %val) { } define i32 @main() { - %res = call i32 bitcast (i32 (i8 signext)* @foo to i32 (i1)*)( i1 1 ) + %res = call i32 bitcast (i32 (i8)* @foo to i32 (i1)*)( i1 1 ) %check = icmp ne i32 %res, 255 br i1 %check, label %error, label %exit |