Mercurial > hg > Members > tobaru > cbc > CbC_llvm
comparison test/CodeGen/NVPTX/alias.ll @ 100:7d135dc70f03
LLVM 3.9
author | Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 26 Jan 2016 22:53:40 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
96:6418606d0ead | 100:7d135dc70f03 |
---|---|
1 ; RUN: not llc < %s -march=nvptx -mcpu=sm_20 2>&1 | FileCheck %s | |
2 | |
3 ; Check that llc dies gracefully when given an alias. | |
4 | |
5 define i32 @a() { ret i32 0 } | |
6 ; CHECK: ERROR: Module has aliases | |
7 @b = internal alias i32 (), i32 ()* @a |