Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(886)

Side by Side Diff: ssa/interp/external_windows.go

Issue 26500043: code review 26500043: go.tools/ssa/interp: fix Plan 9 build for Brad (Closed)
Patch Set: diff -r 6b12c0090dfb https://code.google.com/p/go.tools Created 10 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ssa/interp/external_unix.go ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Go Authors. All rights reserved. 1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // +build windows plan9 5 // +build windows
rsc 2013/11/14 15:20:26 this line does nothing: the file is named external
6 6
7 package interp 7 package interp
8 8
9 import ( 9 import (
10 "code.google.com/p/go.tools/ssa" 10 "code.google.com/p/go.tools/ssa"
11 ) 11 )
12 12
13 func ext۰syscall۰Close(fn *ssa.Function, args []value) value { 13 func ext۰syscall۰Close(fn *ssa.Function, args []value) value {
14 panic("syscall.Close not yet implemented") 14 panic("syscall.Close not yet implemented")
15 } 15 }
(...skipping 17 matching lines...) Expand all
33 } 33 }
34 func ext۰syscall۰ReadDirent(fn *ssa.Function, args []value) value { 34 func ext۰syscall۰ReadDirent(fn *ssa.Function, args []value) value {
35 panic("syscall.ReadDirent not yet implemented") 35 panic("syscall.ReadDirent not yet implemented")
36 } 36 }
37 func ext۰syscall۰Stat(fn *ssa.Function, args []value) value { 37 func ext۰syscall۰Stat(fn *ssa.Function, args []value) value {
38 panic("syscall.Stat not yet implemented") 38 panic("syscall.Stat not yet implemented")
39 } 39 }
40 func ext۰syscall۰Write(fn *ssa.Function, args []value) value { 40 func ext۰syscall۰Write(fn *ssa.Function, args []value) value {
41 panic("syscall.Write not yet implemented") 41 panic("syscall.Write not yet implemented")
42 } 42 }
43 func ext۰syscall۰RawSyscall(fn *ssa.Function, args []value) value {
44 return tuple{uintptr(0), uintptr(0), uintptr(syscall.ENOSYS)}
45 }
OLDNEW
« no previous file with comments | « ssa/interp/external_unix.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b