aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/libgo/syscalls/syscall_linux_amd64.go
blob: 9932579cc10a93ef702bb53fb2df4525ff28e09f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// syscall_linux_amd64.go -- GNU/Linux 386 specific support

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package syscall

func (r *PtraceRegs) PC() uint64 {
	return r.Rip;
}

func (r *PtraceRegs) SetPC(pc uint64) {
	r.Rip = pc;
}