Skip to content

Commit 84dbf46

Browse files
authored
Merge pull request #147 from maleadt/tb/fix_ci
Fix asmcall test for 32 bit.
2 parents 68a91e2 + 924f5ec commit 84dbf46

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

.appveyor.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ platform:
88
- x86
99
- x64
1010

11-
branches:
12-
only:
13-
- master
14-
- staging
15-
- trying
16-
1711
notifications:
1812
- provider: Email
1913
on_build_success: false

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@ julia:
99
- 1.0
1010
- nightly
1111

12-
branches:
13-
only:
14-
- master
15-
- staging
16-
- trying
17-
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
18-
1912
notifications:
2013
email: false
2114

test/interop.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ d1(a) = @asmcall("bswap \$0", "=r,r", Int32, Tuple{Int32}, a)
8585

8686
# multiple output registers
8787

88-
e1() = @asmcall("mov \$\$1, \$0; mov \$\$2, \$1;", "=r,=r", Tuple{Int32,Int64})
89-
@test e1() == (Int32(1), Int64(2))
88+
e1() = @asmcall("mov \$\$1, \$0; mov \$\$2, \$1;", "=r,=r", Tuple{Int16,Int32})
89+
@test e1() == (Int16(1), Int32(2))
9090

9191
end
9292

0 commit comments

Comments
 (0)