mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
d4c615be8c
Discussed here: http://lists.llvm.org/pipermail/llvm-dev/2018-January/120320.html In preparation for adding support for named vregs we are changing the sigil for physical registers in MIR to '$' from '%'. This will prevent name clashes of named physical register with named vregs. llvm-svn: 323922
14 lines
371 B
LLVM
14 lines
371 B
LLVM
; RUN: llc -mtriple=i686-pc-linux -print-after=postrapseudos < %s 2>&1 | FileCheck %s
|
|
|
|
; CHECK: MOV8rr ${{[a-d]}}l, implicit killed $e[[R:[a-d]]]x, implicit-def $e[[R]]x
|
|
define i32 @foo(i32 %i, i32 %k, i8* %p) {
|
|
%f = icmp ne i32 %i, %k
|
|
%s = zext i1 %f to i8
|
|
%ret = zext i1 %f to i32
|
|
br label %next
|
|
next:
|
|
%d = add i8 %s, 5
|
|
store i8 %d, i8* %p
|
|
ret i32 %ret
|
|
}
|