mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
184f8f7c10
TableGen had been nicely generating code to print a number of instructions using shorter aliases (and PowerPC has plenty of short mnemonics), but we were not calling it. For some of the aliases we support in the parser, TableGen can't infer the "inverse" alias relationship, so there is still more to do. Thus, after some hours of updating test cases... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235616 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
328 B
LLVM
12 lines
328 B
LLVM
; RUN: llc < %s | FileCheck %s
|
|
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64"
|
|
target triple = "powerpc64-unknown-linux"
|
|
|
|
define i64 @fun(i32 %arg32) nounwind {
|
|
entry:
|
|
; CHECK: clrldi {{[0-9]+}}, {{[0-9]+}}, 32
|
|
%o = zext i32 %arg32 to i64
|
|
ret i64 %o
|
|
}
|
|
|