Fix pointer width in test from r366754.

llvm-svn: 366764
This commit is contained in:
Peter Collingbourne 2019-07-22 23:32:41 +00:00
parent bd519c3a0b
commit ddccb494ee
1 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,6 @@ target triple = "x86_64-unknown-linux-gnu"
@b = linkonce_odr alias [3 x i8*], [3 x i8*]* @a
define i8** @f() {
; CHECK: ret i8** getelementptr ([3 x i8*], [3 x i8*]* @b, i32 0, i32 1)
ret i8** getelementptr ([3 x i8*], [3 x i8*]* @b, i32 0, i32 1)
; CHECK: ret i8** getelementptr ([3 x i8*], [3 x i8*]* @b, i64 0, i64 1)
ret i8** getelementptr ([3 x i8*], [3 x i8*]* @b, i64 0, i64 1)
}