Created
May 3, 2020 14:01
-
-
Save bwesterb/17b42f985d2045ff6e1ebb40a3a9073f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
var data uint32 = 1234 | |
func test(p *uint32) | |
func main() { | |
test(&data) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "textflag.h" | |
// func ntt(p *uint32) | |
TEXT ·test(SB), NOSPLIT, $0-8 | |
MOVQ p+0(FP), CX | |
VPBROADCASTD (CX), Y0 | |
RET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment