diff options
author | Daniel Mueller <deso@posteo.net> | 2018-12-10 21:02:04 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2018-12-10 21:02:04 -0800 |
commit | 8898de1f97aff9965e1518ca5abb554275183a14 (patch) | |
tree | ac7deb92599ec56d67432766b2cf4cd63388833a /cc/cc-test/src | |
parent | e2604a756aaddcd5919ee2f1b9cc0055d200f846 (diff) | |
download | nitrocli-8898de1f97aff9965e1518ca5abb554275183a14.tar.gz nitrocli-8898de1f97aff9965e1518ca5abb554275183a14.tar.bz2 |
Update cc crate to 1.0.25
This change updates the cc crate to version 1.0.25.
Import subrepo cc/:cc at fe0a7acb6d3e22e03bf83bcbf89367be888b5448
Diffstat (limited to 'cc/cc-test/src')
-rw-r--r-- | cc/cc-test/src/aarch64.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cc/cc-test/src/aarch64.S b/cc/cc-test/src/aarch64.S new file mode 100644 index 0000000..1d9062d --- /dev/null +++ b/cc/cc-test/src/aarch64.S @@ -0,0 +1,10 @@ +.globl asm +asm: + mov w0, 7 + ret + +.globl _asm +_asm: + mov w0, 7 + ret + |