1; RUN: llvm-ml -m32 -filetype=s %s /Fo - | FileCheck %s 2; RUN: llvm-ml -m64 -filetype=s %s /Fo - | FileCheck %s 3 4.code 5 6t1 PROC 7 xor eax, eax 8t1_nested PROC 9 ret 10t1_nested ENDP 11t1 ENDP 12 13; CHECK-LABEL: t1: 14; CHECK: xor eax, eax 15; CHECK: t1_nested: 16; CHECK: ret 17 18t2 PROC 19 xor eax, eax 20t2_nested PROC 21 ret 22T2_nEsTeD ENDP 23t2 ENDP 24 25; CHECK-LABEL: t2: 26; CHECK: xor eax, eax 27; CHECK: t2_nested: 28; CHECK: ret 29 30END 31