NAKAMURA Takumi | a403732 | 2011-02-22 07:20:18 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s |
2 | ; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s | ||||
3 | ; CHECK: movq ([[A0:%rdi|%rcx]]), %rax | ||||
4 | ; CHECK: movq 8([[A0]]), %rdx | ||||
Chris Lattner | 64b8352 | 2007-02-25 06:06:49 +0000 | [diff] [blame] | 5 | |
6 | define i128 @test(i128 *%P) { | ||||
7 | %A = load i128* %P | ||||
8 | ret i128 %A | ||||
9 | } | ||||
10 |