asan.c (instrument_builtin_call): Fix up dest assignment.

* asan.c (instrument_builtin_call) <case BUILT_IN_BCOPY>: Fix up
	dest assignment.

From-SVN: r193469
This commit is contained in:
Jakub Jelinek 2012-11-13 08:21:15 +01:00 committed by Jakub Jelinek
parent d2860e7236
commit 42b04d70a1
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2012-11-12 Jakub Jelinek <jakub@redhat.com>
* asan.c (instrument_builtin_call) <case BUILT_IN_BCOPY>: Fix up
dest assignment.
2012-11-13 Hans-Peter Nilsson <hp@axis.com>
PR target/55257

View file

@ -1045,16 +1045,16 @@ instrument_builtin_call (gimple_stmt_iterator *iter)
/* (s, s, n) style memops. */
case BUILT_IN_BCMP:
case BUILT_IN_MEMCMP:
len = gimple_call_arg (call, 2);
source0 = gimple_call_arg (call, 0);
source1 = gimple_call_arg (call, 1);
len = gimple_call_arg (call, 2);
break;
/* (src, dest, n) style memops. */
case BUILT_IN_BCOPY:
len = gimple_call_arg (call, 2);
source0 = gimple_call_arg (call, 0);
dest = gimple_call_arg (call, 2);
dest = gimple_call_arg (call, 1);
len = gimple_call_arg (call, 2);
break;
/* (dest, src, n) style memops. */