mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
67acdea900
Summary: Previously, we would just output "foo = bar" in the assembly, and then ptxas would choke. Now we die before emitting any invalid code. Reviewers: echristo Subscribers: jholewinski, llvm-commits, jhen, tra Differential Revision: http://reviews.llvm.org/D16490 llvm-svn: 258638
8 lines
225 B
LLVM
8 lines
225 B
LLVM
; RUN: not llc < %s -march=nvptx -mcpu=sm_20 2>&1 | FileCheck %s
|
|
|
|
; Check that llc dies gracefully when given an alias.
|
|
|
|
define i32 @a() { ret i32 0 }
|
|
; CHECK: ERROR: Module has aliases
|
|
@b = internal alias i32 (), i32 ()* @a
|