diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-12-15 18:54:27 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-12-15 18:54:27 +0000 |
| commit | c9dcfc51828313daacfce83b1fabc2d4c5fe4e52 (patch) | |
| tree | ed0cd72b523fc3f3eb7fee35acf0c80279c834dd /compiler-rt/lib | |
| parent | 561117caba249ebdd5ddb9f67fce46adca54402f (diff) | |
| download | bcm5719-llvm-c9dcfc51828313daacfce83b1fabc2d4c5fe4e52.tar.gz bcm5719-llvm-c9dcfc51828313daacfce83b1fabc2d4c5fe4e52.zip | |
xray: fix assembly macro definition
projects/compiler-rt/lib/xray/xray_trampoline_x86_64.S:33:7: error: unexpected token in '.endm' directive
.endm SAVE_REGISTERS
^
projects/compiler-rt/lib/xray/xray_trampoline_x86_64.S:52:7: error: unexpected token in '.endm' directive
.endm RESTORE_REGISTERS
^
Remove the trailing name on the `.endm` which does not take the name of the
macro. This should bring the compiler-rt build bot back into working state.
llvm-svn: 289852
Diffstat (limited to 'compiler-rt/lib')
| -rw-r--r-- | compiler-rt/lib/xray/xray_trampoline_x86_64.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/xray/xray_trampoline_x86_64.S b/compiler-rt/lib/xray/xray_trampoline_x86_64.S index 2508c5db4ec..d90c30cd98e 100644 --- a/compiler-rt/lib/xray/xray_trampoline_x86_64.S +++ b/compiler-rt/lib/xray/xray_trampoline_x86_64.S @@ -30,7 +30,7 @@ movq %rcx, 32(%rsp) movq %r8, 24(%rsp) movq %r9, 16(%rsp) -.endm SAVE_REGISTERS +.endm .macro RESTORE_REGISTERS movupd 184(%rsp), %xmm0 @@ -49,7 +49,7 @@ movq 24(%rsp), %r8 movq 16(%rsp), %r9 addq $200, %rsp -.endm RESTORE_REGISTERS +.endm .text .file "xray_trampoline_x86.S" |

